feat: fix typescript

pull/31/head
orzi! 3 years ago
parent d5e205ca85
commit c170f7ea6a

@ -28,7 +28,7 @@ declare module Item {
/** 评论者UID */
user_id: number,
/** 类别1为标题2为文字段落3为图片地址4为视频地址5为语音地址6为链接地址 */
type: number,
type: 1 | 2 | 3 | 4 | 5 | 6,
/** 内容 */
content: string,
/** 排序,越小越靠前 */
@ -111,7 +111,7 @@ declare module Item {
/** 内容ID */
id: number,
/** 类型1为标题2为文字段落3为图片地址4为视频地址5为语音地址6为链接地址7为附件资源8为收费资源 */
type: number,
type: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8,
/** POST ID */
post_id: number,
/** 内容 */
@ -190,7 +190,7 @@ declare module Item {
interface MessageProps {
id: number,
/** 类型1为动态2为评论3为回复4为私信99为系统通知 */
type: number,
type: 1 | 2 | 3 | 4 | 99,
/** 摘要说明 */
breif: string,
/** 详细内容 */

Loading…
Cancel
Save