8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
|
declare type contextMenuSchema = {
|
||
|
disabled?: boolean
|
||
|
divided?: boolean
|
||
|
icon?: string
|
||
|
label: string
|
||
|
command?: (item: contextMenuSchema) => viod
|
||
|
}
|