Projekt

Obecné

Profil

Stáhnout (323 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
    occurrences: TagInstanceInfo[];
12

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