ResolvedTokens
typeRepresents a fully resolved token structure where all categories and tokens are readonly. This is the shape of tokens after all references and computed functions have been resolved.
Import
import { ResolvedTokens } from '@modular/sdk/theme';Notes
- example
- ```typescript const tokens: ResolvedTokens = { color: { brand: '#007bff', primary: '#333' }, spacing: { base: 4, md: 16 } } as const; ```