You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
777 B
26 lines
777 B
2 years ago
|
import type { ComponentTokenMap } from './components';
|
||
|
import type { AliasToken } from './alias';
|
||
|
|
||
|
export type OverrideToken = {
|
||
|
[key in keyof ComponentTokenMap]: Partial<ComponentTokenMap[key]> & Partial<AliasToken>;
|
||
|
};
|
||
|
|
||
|
/** Final token which contains the components level override */
|
||
|
export type GlobalToken = AliasToken & ComponentTokenMap;
|
||
|
|
||
|
export { PresetColors } from './presetColors';
|
||
|
export type { PresetColorType, ColorPalettes } from './presetColors';
|
||
|
export type { SeedToken } from './seeds';
|
||
|
export type {
|
||
|
MapToken,
|
||
|
ColorMapToken,
|
||
|
ColorNeutralMapToken,
|
||
|
CommonMapToken,
|
||
|
HeightMapToken,
|
||
|
SizeMapToken,
|
||
|
FontSizeMapToken,
|
||
|
StyleMapToken,
|
||
|
} from './maps';
|
||
|
export type { AliasToken } from './alias';
|
||
|
export type { ComponentTokenMap } from './components';
|