aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-shared/src/ts/types.ts
blob: f9d561d1a2ba82d151ac1dee14ae59c335b0506a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
export interface Styles {
    [name: string]: React.CSSProperties;
}

export enum HeaderSizes {
    H1 = 'h1',
    H2 = 'h2',
    H3 = 'h3',
}

export interface MenuSubsectionsBySection {
    [section: string]: string[];
}