9 lines
137 B
TypeScript
9 lines
137 B
TypeScript
|
|
// 定义数据结构接口
|
||
|
|
export interface DataSchema {
|
||
|
|
fields: {
|
||
|
|
name: string
|
||
|
|
type: string
|
||
|
|
description?: string
|
||
|
|
}[]
|
||
|
|
}
|