Projekt

Obecné

Profil

Stáhnout (345 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 4bc99591 Lukáš Vlček
import { SubTagInfo, TagInfo, TagInstanceInfo } from '../../api';
2 76242338 Dominik Poch
3
/**
4
 * Special tag used in annotation panel.
5
 */
6 967f45fc Dominik Poch
export type Tag = {
7 4bc99591 Lukáš Vlček
    tagName: string;
8
    subtagName: string | null;
9
10 967f45fc Dominik Poch
    category: string;
11 4e91ed40 Dominik Poch
    visible: boolean;
12 76242338 Dominik Poch
    occurrences: TagInstanceInfo[];
13 4bc99591 Lukáš Vlček
14
    tagId: string;
15
    subtagId: string | null;
16
    instanceId: string;
17 967f45fc Dominik Poch
};