Type Alias: AuthorizationStore
ts
type AuthorizationStore = object;Properties
get()
ts
get: (identifier, options) =>
| Promise<string | undefined>
| string
| undefined;Parameters
| Parameter | Type |
|---|---|
identifier | string |
options | Omit<GenerateOptions, "store"> |
Returns
| Promise<string | undefined> | string | undefined
identifier
ts
identifier: string;set()
ts
set: (identifier, options, value) => void;Parameters
| Parameter | Type |
|---|---|
identifier | string |
options | Omit<GenerateOptions, "store"> |
value | string | undefined |
Returns
void