SheetXL - v0.3.20
    Preparing search index...

    Interface JSONSerializable<J>

    Interface for serializing objects to and from JSON.

    interface JSONSerializable<J> {
        fromJSON(json: J): void;
        toJSON(): J;
    }

    Type Parameters

    • J
    Index

    Methods

    • Load internal state from json

      Parameters

      • json: J

      Returns void

    • Save internal state to JSON

      Returns J