aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/@types/gallery/index.d.ts
blob: 310c86521e2dabb80e72642a41b5be3cdc5d3b56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
declare namespace Gallery {
    interface Image extends Item {
        properties: ImageProperties,
    }
    interface Directory extends Item {
        properties: DirectoryProperties,
    }
    interface Item {
        title: string,
        date: string,
        description: string,
        tags: RawTag[],
        path: string,
        thumbnail: {
            path: string,
        },
        properties: ImageProperties | DirectoryProperties,
    }
    interface ImageProperties {
        type: "image",
        filesize: number,
        resolution: {
            width: number,
            height: number,
        }
    }
    interface DirectoryProperties {
        type: "directory",
        items: Item[]
    }
    type RawTag = string;
}