33 lines
496 B
TypeScript
33 lines
496 B
TypeScript
|
|
export enum ReplyType {
|
||
|
|
Image = 'image',
|
||
|
|
Music = 'music',
|
||
|
|
News = 'news',
|
||
|
|
Text = 'text',
|
||
|
|
Video = 'video',
|
||
|
|
Voice = 'voice',
|
||
|
|
}
|
||
|
|
|
||
|
|
export enum NewsType {
|
||
|
|
Draft = '2',
|
||
|
|
Published = '1',
|
||
|
|
}
|
||
|
|
|
||
|
|
export enum MaterialType {
|
||
|
|
Image = 'image',
|
||
|
|
News = 'news',
|
||
|
|
Video = 'video',
|
||
|
|
Voice = 'voice',
|
||
|
|
}
|
||
|
|
|
||
|
|
export enum MsgType {
|
||
|
|
Event = 'event',
|
||
|
|
Image = 'image',
|
||
|
|
Link = 'link',
|
||
|
|
Location = 'location',
|
||
|
|
Music = 'music',
|
||
|
|
News = 'news',
|
||
|
|
Text = 'text',
|
||
|
|
Video = 'video',
|
||
|
|
Voice = 'voice',
|
||
|
|
}
|