generated from kawarimidoll/deno-dev-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.ts
142 lines (133 loc) · 3.13 KB
/
types.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
export interface ZennArticle {
id: number;
title: string;
slug: string;
published: boolean;
commentsCount: number;
likedCount: number;
bodyLettersCount: number;
readingTime: number;
articleType: string;
emoji: string;
isSuspendingPrivate: boolean;
publishedAt: Date;
bodyUpdatedAt: Date;
sourceRepoUpdatedAt?: Date;
createdAt: Date;
updatedAt: Date;
bodyHtml?: string;
ogImageUrl?: string;
badgeList?: Array<[string, number]>;
shouldNoindex: boolean;
isMine: boolean;
isPreview: boolean;
currentUserLiked: boolean;
githubRepository?: string;
user: ZennUser;
topics: ZennTopic[];
}
/**
* Type guard for ZennArticle.
*/
// deno-lint-ignore no-explicit-any
export function implementsZennArticle(object: any): object is ZennArticle {
return object && typeof object == "object" &&
typeof object.articleType == "string";
}
export interface ZennUser {
id: number;
username: string;
name: string;
avatarSmallUrl: string;
// detail
avatarUrl?: string;
bio?: string;
autolinkedBio?: string;
githubUsername?: string;
twitterUsername?: string;
isSupportOpen?: boolean;
tokusyoContact?: string;
tokusyoName?: string;
websiteUrl?: string;
websiteDomain?: string;
totalLikedCount?: number;
gaTrackingId?: string;
followerCount?: number;
followingCount?: number;
articlesCount?: number;
booksCount?: number;
scrapsCount?: number;
}
/**
* Type guard for ZennUser.
*/
// deno-lint-ignore no-explicit-any
export function implementsZennUser(object: any): object is ZennUser {
return object && typeof object == "object" &&
typeof object.username == "string";
}
export interface ZennTopic {
id: number;
name: string;
displayName: string;
taggingsCount: number;
imageUrl: string;
// detail
articlesCount?: number;
booksCount?: number;
scrapsCount?: number;
}
/**
* Type guard for ZennTopic.
*/
// deno-lint-ignore no-explicit-any
export function implementsZennTopic(object: any): object is ZennTopic {
return object && typeof object == "object" &&
typeof object.displayName == "string";
}
export interface ZennBook {
id: number;
title: string;
slug: string;
published: boolean;
price: number;
isSuspendingPrivate: boolean;
likedCount: number;
createdAt: Date;
publishedAt: Date;
sourceRepoUpdatedAt?: Date;
coverImageSmallUrl: string;
user: ZennUser;
}
/**
* Type guard for ZennBook.
*/
// deno-lint-ignore no-explicit-any
export function implementsZennBook(object: any): object is ZennBook {
return object && typeof object == "object" && typeof object.price == "number";
}
export interface ZennScrap {
id: number;
userId: number;
slug: string;
title: string;
closed: boolean;
closedAt?: Date;
archived: boolean;
likedCount: number;
canOthersPost: boolean;
commentsCount: number;
createdAt: Date;
lastCommentCreatedAt: Date;
shouldNoindex: boolean;
topics: ZennTopic[];
user: ZennUser;
}
/**
* Type guard for ZennScrap.
*/
// deno-lint-ignore no-explicit-any
export function implementsZennScrap(object: any): object is ZennScrap {
return object && typeof object == "object" &&
typeof object.closed == "boolean";
}