mirror of
https://gitee.com/dromara/go-view.git
synced 2026-04-23 00:00:12 +08:00
8 lines
182 B
TypeScript
8 lines
182 B
TypeScript
export type Chartype = {
|
|
id: number | string
|
|
title: string // 标题
|
|
label: string // 标签
|
|
release: boolean // 0未发布 | 1已发布
|
|
}
|
|
|
|
export type ChartList = Chartype[] |