Documentation - v0.0.0
    Preparing search index...

    Interface SimpleStore

    interface SimpleStore {
        data: any;
        flush(): void;
        save(data: any): any;
    }

    Hierarchy (View Summary)

    Index
    data: any

    Data in store.

    • FLush all data from store.

      Returns void

    • Overwrite store data.

      Parameters

      • data: any

        new data.

      Returns any