TeaSpeak-Client/modules/shared/MenuBarDefinitions.ts

10 lines
233 B
TypeScript
Raw Normal View History

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