CSSNumericSumValue.d.ts 243 B

12345678
  1. import type { UnitType } from './types';
  2. export type UnitMap = Record<UnitType, number>;
  3. export interface Term {
  4. value: number;
  5. units: UnitMap;
  6. }
  7. export type CSSNumericSumValue = Term[];
  8. //# sourceMappingURL=CSSNumericSumValue.d.ts.map