@inrupt/solid-client-authn-core / IStorage
Interface: IStorage¶
Interface that various platforms should implement for their own storage implementation
Properties¶
delete¶
• delete: (key: string) => Promise<void>
Type declaration:¶
▸ (key: string): Promise<void>
Parameters:¶
Name |
Type |
|---|---|
|
string |
Returns: Promise<void>
Defined in: src/storage/IStorage.ts:28
Defined in: src/storage/IStorage.ts:28
get¶
• get: (key: string) => Promise<undefined | string>
Type declaration:¶
▸ (key: string): Promise<undefined | string>
Parameters:¶
Name |
Type |
|---|---|
|
string |
Returns: Promise<undefined | string>
Defined in: src/storage/IStorage.ts:26
Defined in: src/storage/IStorage.ts:26