10 lines
233 B
TypeScript
10 lines
233 B
TypeScript
|
import {NativeImage} from "electron";
|
||
|
|
||
|
export interface NativeMenuBarEntry {
|
||
|
uniqueId: string,
|
||
|
type: "separator" | "normal",
|
||
|
label?: string,
|
||
|
icon?: string,
|
||
|
disabled?: boolean,
|
||
|
children?: NativeMenuBarEntry[]
|
||
|
}
|