@inrupt/solid-client-authn-browser
    Preparing search index...

    Interface IStorage

    Interface that various platforms should implement for their own storage implementation

    interface IStorage {
        delete: (key: string) => Promise<void>;
        get: (key: string) => Promise<undefined | string>;
        set: (key: string, value: string) => Promise<void>;
    }
    Index

    Properties

    Properties

    delete: (key: string) => Promise<void>
    get: (key: string) => Promise<undefined | string>
    set: (key: string, value: string) => Promise<void>