Projekt

Obecné

Profil

Stáhnout (189 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
export type Tag = {
2
    name: string;
3
    category: string;
4
    visible: boolean;
5
    occurrences: Occurrence[];
6
};
7

    
8
export type Occurrence = {
9
    position: number;
10
    length: number;
11
};
    (1-1/1)