theming / Class

TestingThemeTokenRegistry

Decorators:@Injectable
Implements:ThemeTokenRegistry

Implementation of ThemeTokenRegistry that is intended for testing purposes.

Properties

NameTypeDescription
tokens
Record<string, string | null>

In-memory storage of theme tokens.

Methods

get()

No documentation has been provided.

Presentation
get(name: string): string | null;
Parameters
NameTypeDescription
name
string
Returns
string | null

set()

No documentation has been provided.

Presentation
set(name: string, value: string | null): void;
Parameters
NameTypeDescription
name
string
value
string | null
Returns
void