mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-22 13:36:23 +08:00
13 lines
189 B
TypeScript
13 lines
189 B
TypeScript
export enum TypeEnum {
|
|
BUTTON = 'button',
|
|
IMPORTUPLOAD = 'importUpload'
|
|
}
|
|
|
|
export type BtnListType = {
|
|
key: string
|
|
type: TypeEnum
|
|
name: string
|
|
icon: any
|
|
handle?: () => void
|
|
}
|