Theemo / @theemo/tokens / TokenTypeRegistry
Interface: TokenTypeRegistry
Defined in: packages/tokens/src/token-types.ts:323
Registry of available token types
Example
Adding your own types
ts
type BorderValue = /* ... */
declare module '@theemo/tokens' {
interface TokenTypeRegistry {
border: BorderValue;
}
}