@raoul-picconi/mojito-sdk
    Preparing search index...

    Interface Storage

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

    Properties

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