mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-22 21:46:23 +08:00
13 lines
204 B
TypeScript
13 lines
204 B
TypeScript
export type ListType = {
|
|
key: any
|
|
type: string
|
|
name: string
|
|
desc: string
|
|
value: any
|
|
suffix?: string
|
|
step?: number
|
|
min?: number
|
|
tip?: string
|
|
options?: { label: string; value: any }[]
|
|
}
|