This repository has been archived by the owner on Oct 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
global.d.ts
126 lines (118 loc) · 2.28 KB
/
global.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
declare module '*.png';
declare module '*.gif';
declare module '*.jpg';
declare module '*.jpeg';
declare module '*.svg';
declare module '*.css';
declare module '*.less';
declare module '*.scss';
declare module '*.sass';
declare module '*.styl';
/* eslint-disable */
declare namespace JSX {
interface IntrinsicElements {
block: any;
wemark: any;
}
}
type Optional<T> = { [P in keyof T]?: T[P] };
interface GlobalStateInterface {
user: UserStateInterface;
doc: DocStateInterface;
page: PageStateInterface;
book: BookStateInterface;
}
interface PageStateInterface {
createdDocumentPageInitStatus: {
startInit: boolean;
loading: boolean;
error: null | Error | string;
};
createdDocumentLoadingMore: {
end: boolean;
loading: boolean;
error: null | Error;
};
documentDetailInit: {
loading: boolean;
error: null | any;
};
userBooksPageStatus: {
loading: boolean;
error: null | Error;
};
}
interface DocStateInterface {
docDetailMap: {
[key: string]: DocumentDetailSerializer;
};
createdDocs: DocSerializer[];
}
interface UserStateInterface {
userInfo?: UserDetailSerializer;
}
interface BookStateInterface {
userBooks: BookSerializer[];
}
/**
* 知识库列表字段
* https://www.yuque.com/yuque/developer/docserializer
* public 是否公开 [1 - 公开, 0 - 私密]
* book 知识库
*/
interface DocSerializer {
id: number;
slug: string;
title: string;
description: string;
user_id: number;
book_id: number;
format: string;
public: 0 | 1;
created_at: string;
word_count: number;
book: {
id: number;
name: string;
user: {
name: string;
avatar_url: string;
};
};
}
interface DocumentDetailSerializer {
abilities: {
destroy: boolean;
update: boolean;
};
data: {
id: number;
book: {
id: number;
items_count: number;
namespace: string;
};
slug: string;
body: string;
title: string;
word_count: number;
};
}
interface UserDetailSerializer {
id: string;
books_count: string;
description: string;
account_id: string;
login: string;
name: string;
avatar_url: string;
}
interface BookSerializer {
id: number;
slug: string;
type: string;
name: string;
namespace: string;
user_id: string;
public: number;
}