aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/@types/gallery/index.d.ts
blob: 2dd11fb3b02206691a8418691fb7f877c9a53e96 (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
declare namespace Gallery {
    interface Item {
        title: string,
        date: string,
        description: string,
        tags: string[],
        path: string,
        thumbnail: {
            path: string,
        },
        properties: Image | Directory,
    }
    interface Image {
        type: "image",
        filesize: number,
        resolution: {
            width: number,
            height: number,
        }
    }
    interface Directory {
        type: "directory",
        items: Item[]
    }
}