(name: TokenName)
| 24 | type TokenName = keyof typeof tokens; |
| 25 | |
| 26 | export function getToken(name: TokenName): string { |
| 27 | return (tokens[name] as any).value; |
| 28 | } |
| 29 | |
| 30 | export interface ColorToken { |
| 31 | type: 'color'; |
no outgoing calls
no test coverage detected