Interface SerializationOptions

interface SerializationOptions {
    adapters?: SerializationAdapter[];
    stable?: boolean;
    undefinedPropertyValuesPreserved?: boolean;
}

Properties

The array of adapters that are applied during serialization.

stable?: boolean

If true then keys are sorted during serialization.

false
undefinedPropertyValuesPreserved?: boolean

If true then object properties that have an undefined value are serialized.

false