Files
go-view/src/views/project/items/index.d.ts
T
2022-05-22 15:06:45 +08:00

10 lines
250 B
TypeScript

export type Chartype = {
id: number | string
title: string // 标题
label: string // 标签
time: string, // 时间
createId: string, // 创建者
release: boolean // false 未发布 | true 已发布
}
export type ChartList = Chartype[]