11 lines
241 B
TypeScript
Raw Normal View History

2021-12-23 12:17:25 +08:00
export type Chartype = {
2021-12-19 19:19:46 +08:00
id: number | string
title: string // 标题
lableId: string | number
label: string // 标签
release: number // 0未发布 | 1已发布
2021-12-23 12:17:25 +08:00
icon: any
['string']: string
2021-12-19 19:19:46 +08:00
}
2021-12-23 12:17:25 +08:00
export type ChartList = Chartype[]