TeaSpeak-Client/modules/shared/MenuBarDefinitions.ts

10 lines
233 B
TypeScript
Raw Normal View History

2020-10-05 09:10:49 -04:00
import {NativeImage} from "electron";
export interface NativeMenuBarEntry {
uniqueId: string,
type: "separator" | "normal",
label?: string,
icon?: string,
disabled?: boolean,
children?: NativeMenuBarEntry[]
}