@scolastico-dev/walu
    Preparing search index...

    Interface IStorageData

    Represents a key-value pair for storage operations. Used for storing the current version and update file in IndexedDB, as well as making config data available to the service worker.

    interface IStorageData {
        key: string;
        value: string | Blob;
    }
    Index

    Properties

    Properties

    key: string
    value: string | Blob