Live video on the AT Protocol
at next 5 lines 187 B view raw
1export interface AQStorage { 2 getItem: (key: string) => Promise<string | null>; 3 setItem: (key: string, value: string) => Promise<void>; 4 removeItem: (key: string) => Promise<void>; 5}