Projekt

Obecné

Profil

Stáhnout (345 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
import { SubTagInfo, TagInfo, TagInstanceInfo } from '../../api';
2

    
3
/**
4
 * Special tag used in annotation panel.
5
 */
6
export type Tag = {
7
    tagName: string;
8
    subtagName: string | null;
9

    
10
    category: string;
11
    visible: boolean;
12
    occurrences: TagInstanceInfo[];
13

    
14
    tagId: string;
15
    subtagId: string | null;
16
    instanceId: string;
17
};
(2-2/2)