Interface SerializationOptions

Controls the serialization of RPC structures.

interface SerializationOptions {
    excludeResourceReferencesFromDependencies?: boolean;
    keepOutputValues?: boolean;
}

Properties

excludeResourceReferencesFromDependencies?: boolean

True if we should exclude resource references from the set of dependencies identified during serialization. This is useful for remote components where we want propertyDependencies to be empty for a property that only contains resource references. If the monitor does not support resource references, this will have no effect.

keepOutputValues?: boolean

True if we are keeping output values. If the monitor does not support output values, they will not be kept, even when this is set to true.

Generated using TypeDoc