JSON Marshal - v0.0.5
    Preparing search index...

    Interface SerializationOptions

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

    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