Statekit - v2.0.1
    Preparing search index...

    Type Alias StorageAPI

    type StorageAPI = {
        getItem: (key: string) => string | null;
        removeItem: (key: string) => void;
        setItem: (key: string, value: string) => void;
    }
    Index

    Properties

    getItem: (key: string) => string | null
    removeItem: (key: string) => void
    setItem: (key: string, value: string) => void