Skip to content

ContextValues

Defined in: packages/repo/src/context-values.ts:4

ContextValues is a collection of context values.

delete(key): this

Defined in: packages/repo/src/context-values.ts:18

delete deletes a context value. It returns the ContextValues to allow chaining.

ContextKey<unknown>

this


get<T>(key): T

Defined in: packages/repo/src/context-values.ts:8

get returns a context value.

T

ContextKey<T>

T


set<T>(key, value): this

Defined in: packages/repo/src/context-values.ts:13

set sets a context value. It returns the ContextValues to allow chaining.

T

ContextKey<T>

T

this