| 3 | export type VariableDisplayMode = 'reference' | 'resolved' | 'both' |
| 4 | |
| 5 | export interface SerializeOptions { |
| 6 | useRem: boolean |
| 7 | rootFontSize: number |
| 8 | scale: number |
| 9 | variableDisplay?: VariableDisplayMode |
| 10 | } |
| 11 | |
| 12 | export interface RequestPayload { |
| 13 | style: Record<string, string> |
nothing calls this directly
no outgoing calls
no test coverage detected