aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/@types/tag/index.d.ts
blob: 6a027d442e83a13b84fe048d5b567422a80c9327 (plain)
1
2
3
4
5
6
7
8
declare namespace Tag {
    interface Node {
        tag: string;
        items: Gallery.Item[];
        children: Index;
    }
    type Index = { [index: string]: Node };
}