Files
tkNewAdmin/src/types/contextMenu.d.ts
2025-07-01 21:08:51 +08:00

8 lines
155 B
TypeScript

export type contextMenuSchema = {
disabled?: boolean
divided?: boolean
icon?: string
label: string
command?: (item: contextMenuSchema) => void
}