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

Interface: IStorage

Implemented by

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: core/dist/storage/IStorage.d.ts:4

Defined in: core/dist/storage/IStorage.d.ts:4


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: core/dist/storage/IStorage.d.ts:2

Defined in: core/dist/storage/IStorage.d.ts:2


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: core/dist/storage/IStorage.d.ts:3

Defined in: core/dist/storage/IStorage.d.ts:3