11 lines
287 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 // 标题
2022-11-27 12:16:32 +08:00
label?: string // 标签
2022-05-22 15:06:45 +08:00
time: string, // 时间
2022-05-28 16:39:27 +08:00
image: string, // 预览图地址
2022-05-22 15:06:45 +08:00
createId: string, // 创建者
release: boolean // false 未发布 | true 已发布
2021-12-19 19:19:46 +08:00
}
2021-12-23 12:17:25 +08:00
export type ChartList = Chartype[]