2022-04-10 20:56:05 +08:00

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
}