aboutsummaryrefslogtreecommitdiff
path: root/fe/src/types.ts
blob: 03d613d48cc2afe3b96cb4ebb8dda9d7e1ad5b48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export interface Size {
    size: number;
    unit: string;
}

export interface Preference {
    color: string;
    size: Size;
}

export interface User {
    name: string;
    uuid: string;
}