@talend/design-tokens
Version:
Talend Design Tokens
55 lines (54 loc) • 1.16 kB
TypeScript
declare const dictionary: ({
name: string;
type: string;
description: string;
hsla: string;
hex: string;
value: string;
id: string;
fontStyle?: undefined;
fontWeight?: undefined;
fontSize?: undefined;
lineHeight?: undefined;
fontFamily?: undefined;
} | {
name: string;
type: string;
description: string;
value: string;
id: string;
hsla?: undefined;
hex?: undefined;
fontStyle?: undefined;
fontWeight?: undefined;
fontSize?: undefined;
lineHeight?: undefined;
fontFamily?: undefined;
} | {
name: string;
type: string;
description: string;
value: string;
hsla?: undefined;
hex?: undefined;
id?: undefined;
fontStyle?: undefined;
fontWeight?: undefined;
fontSize?: undefined;
lineHeight?: undefined;
fontFamily?: undefined;
} | {
name: string;
type: string;
description: string;
value: string;
fontStyle: string;
fontWeight: string;
fontSize: string;
lineHeight: string;
fontFamily: string;
id: string;
hsla?: undefined;
hex?: undefined;
})[];
export default dictionary;