Interface SerializationOptions

interface SerializationOptions {
    adapters?: SerializationAdapter<any, any>[];
    isStable?: boolean;
    isUndefinedPropertyValuesPreserved?: boolean;
}

Properties

adapters?: SerializationAdapter<any, any>[]

The array of adapters that are applied during serialization.

isStable?: boolean

If true then keys are sorted during serialization.

false
isUndefinedPropertyValuesPreserved?: boolean

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

false