-
Notifications
You must be signed in to change notification settings - Fork 0
/
types.d.ts
41 lines (38 loc) · 824 Bytes
/
types.d.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
type draftsExportType = [
{
languageGrammar: string;
created_at: string;
tags: string[];
flagged: boolean;
content: string;
created_longitude: number;
created_latitude: number;
folder: number;
accessed_at: string;
modified_at: string;
modified_latitude: number;
modified_longitude: number;
uuid: string;
}
];
type roamChildrenType = {
string: string;
"create-email"?: string;
uid?: string;
"create-time"?: number;
"edit-time"?: number;
"edit-email"?: string;
};
type roamImportType = {
title: string;
children: roamChildrenType[];
"create-email"?: string;
uid?: string;
"create-time"?: number;
"edit-time"?: number;
"edit-email"?: string;
};
declare module "drafts-export.json" {
const value: draftsExportType;
export default value;
}