@retriever-ui/type
Version:
Toda tipagens e interfaces do retriever
29 lines (28 loc) • 581 B
TypeScript
export declare type FontWeightType = {
thin: number;
regular: number;
medium: number;
semiBold: number;
bold: number;
};
export declare type FontSizeType = {
extraSmall: string;
small: string;
medium: string;
large: string;
extraLarge: string;
};
declare type VariantsType = {
paragraph: FontSizeType;
heading: FontSizeType;
};
export declare type FontType = {
family: string;
weight: FontWeightType;
sizes: {
mobile: VariantsType;
desktop: VariantsType;
};
fixedSize: FontSizeType;
};
export {};