@inrupt/solid-client-authn-core / IStorage

Interface: IStorage

Interface that various platforms should implement for their own storage implementation

Table of contents

Properties

Properties

delete

delete: (key: string) => Promise<void>

Type declaration:

▸ (key: string): Promise<void>

Parameters:

Name

Type

key

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

key

string

Returns: Promise<undefined | string>

Defined in: src/storage/IStorage.ts:26

Defined in: src/storage/IStorage.ts:26


set

set: (key: string, value: string) => Promise<void>

Type declaration:

▸ (key: string, value: string): Promise<void>

Parameters:

Name

Type

key

string

value

string

Returns: Promise<void>

Defined in: src/storage/IStorage.ts:27

Defined in: src/storage/IStorage.ts:27