SheetXL - v0.3.20
    Preparing search index...

    Interface JSONSerializableAsync<J>

    Interface to indicate that an item has a toJSON but that it is async.

    interface JSONSerializableAsync<J> {
        toJSONAsync: () => J | Promise<J>;
    }

    Type Parameters

    • J
    Index

    Properties

    Properties

    toJSONAsync: () => J | Promise<J>

    Asynchronously serialize the item to JSON.

    Type declaration

      • (): J | Promise<J>
      • Returns J | Promise<J>

        A promise that resolves to the JSON representation of the item.