Projekt

Obecné

Profil

Stáhnout (189 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 967f45fc Dominik Poch
export type Tag = {
2
    name: string;
3
    category: string;
4 4e91ed40 Dominik Poch
    visible: boolean;
5 967f45fc Dominik Poch
    occurrences: Occurrence[];
6
};
7
8
export type Occurrence = {
9
    position: number;
10
    length: number;
11
};