Type Alias StorageAdapter
StorageAdapter: {
get: (key: string) => string;
set: (key: string, token: string) => void;
remove: (key: string) => void;
}
Type declaration
get: (key: string) => string
set: (key: string, token: string) => void
remove: (key: string) => void