Commit 5ec23c0256e27ff861c449fcb038acbbcc3b19cf

Authored by fengwotao
1 parent 66b62536

pref:优化ts类型可选位置放错

1 export type Chartype = { 1 export type Chartype = {
2 id: number | string 2 id: number | string
3 title?: string // 标题 3 title?: string // 标题
4 - label:? string // 标签 4 + label?: string // 标签
5 release?: boolean // 0未发布 | 1已发布 5 release?: boolean // 0未发布 | 1已发布
6 name: string // 0未发布 | 1已发布 6 name: string // 0未发布 | 1已发布
  7 + // THINGS_KIT
7 state: number // 0未发布 | 1已发布 8 state: number // 0未发布 | 1已发布
8 } 9 }
9 10