@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
30 lines (29 loc) • 672 B
TypeScript
import { Guid } from "../Guid";
export interface TypographyDefinition {
id: Guid;
h1: TypographyType;
h2: TypographyType;
h3: TypographyType;
text: TypographyType;
caption: TypographyType;
link: TypographyType;
}
export interface TypographyType {
decoration?: string;
large: TypographyTypeBreakPoint;
medium?: TypographyTypeBreakPoint;
small?: TypographyTypeBreakPoint;
}
export interface TypographyTypeBreakPoint {
weight: number;
size: number;
lineHeight: number;
}
export declare const TypographyTypes: {
h1: string;
h2: string;
h3: string;
text: string;
caption: string;
link: string;
};