Type Alias StorageAPI

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

Type declaration

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