generated from vivid-lapin/ts
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtypes.ts
37 lines (34 loc) · 776 Bytes
/
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
export type TwitterSetting = {
consumerKey?: string
consumerSecret?: string
accessToken?: string
accessTokenSecret?: string
isContentInfoEmbedInImageEnabled: boolean
isReplyProhibitEnabled: boolean
}
export type SayaDefinitionBoard = {
id: string
name: string
server: string
board: string
}
export type SayaDefinitionChannel = {
annictId?: number
boardIds: string[]
flag: number
hasOfficialNicolive: boolean
miyoutvId?: string
name: string
networkId: number
nicojkId?: number
nicoliveCommunityIds: string[]
nicoliveTags: string[]
serviceIds: number[]
syobocalId?: number
twitterKeywords: string[]
type: "GR" | "BS" | "CS"
}
export type SayaDefinition = {
boards: SayaDefinitionBoard[]
channels: SayaDefinitionChannel[]
}