epiphany/node_modules/@csstools/css-calc/dist/util/globals.d.ts

5 lines
364 B
TypeScript
Raw Normal View History

2023-12-09 22:48:07 -08:00
import type { TokenDimension, TokenNumber, TokenPercentage } from '@csstools/css-tokenizer';
export type Globals = Map<string, TokenDimension | TokenNumber | TokenPercentage>;
export type GlobalsWithStrings = Map<string, TokenDimension | TokenNumber | TokenPercentage | string>;
export declare function tokenizeGlobals(x: GlobalsWithStrings | undefined): Globals;