/** * @hidden * @packageDocumentation */ import type { IStorage } from "@inrupt/solid-client-authn-core"; /** * @hidden */ export default class BrowserStorage implements IStorage { get storage(): typeof window.localStorage; get(key: string): Promise; set(key: string, value: string): Promise; delete(key: string): Promise; }