generated from SkepticMystic/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
CalibreSourceTypes.ts
57 lines (49 loc) · 891 Bytes
/
CalibreSourceTypes.ts
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
export interface Book {
id: number;
title: string;
authors: string[];
tags: string[];
cover: string;
description?: string;
publisher: string;
series?: string;
published: Date;
last_modified: Date;
languages: string[];
rating: number;
formats: Format;
main_format: string;
highlights: Highlight[];
identifiers: Identifiers;
custom: CustomMetadata[];
}
export interface Format {
[key: string]: string;
}
export interface CustomMetadata {
name: string;
label: string;
datatype: string;
description: string;
value: string;
}
export interface BookManifest {
chapter: Chapter;
}
export interface Identifiers {
[key: string]: string;
}
export interface Highlight {
text: string;
timestamp: Date;
type: string;
which: string;
location: string[];
notes?: string;
}
export interface Chapter {
id: number;
title: string;
children: Chapter[];
level: number;
}