interface ISerializable {
    onAfterDeserialize(data: any, context: SerializationContext): void;
    onAfterDeserializeMember(
        key: string,
        data: any,
        context: SerializationContext,
    ): void;
    onBeforeDeserialize(
        data: any,
        context: SerializationContext,
    ): undefined | boolean | void;
    onBeforeDeserializeMember(
        key: string,
        data: any,
        context: SerializationContext,
    ): undefined | boolean | void;
}

Methods

  • Parameters

    Returns undefined | boolean | void

MMNEPVFCICPMFPCPTTAAATR