index.d.ts 772 B

12345678910111213
  1. import type { ComponentTokenMap } from './components';
  2. import type { AliasToken } from './alias';
  3. export type OverrideToken = {
  4. [key in keyof ComponentTokenMap]: Partial<ComponentTokenMap[key]> & Partial<AliasToken>;
  5. };
  6. /** Final token which contains the components level override */
  7. export type GlobalToken = AliasToken & ComponentTokenMap;
  8. export { PresetColors } from './presetColors';
  9. export type { PresetColorType, ColorPalettes, PresetColorKey } from './presetColors';
  10. export type { SeedToken } from './seeds';
  11. export type { MapToken, ColorMapToken, ColorNeutralMapToken, CommonMapToken, HeightMapToken, SizeMapToken, FontMapToken, StyleMapToken, } from './maps';
  12. export type { AliasToken } from './alias';
  13. export type { ComponentTokenMap } from './components';