This repository has been archived on 2022-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
zeropod/src/menu/interface.ts

24 lines
353 B
TypeScript

export enum MenuType {
ExecCommand,
Reboot,
Shutdown,
SubMenu,
}
export interface MenuCommand {
exe: string,
args?: string[],
wrap?: boolean,
}
export interface MenuConfig {
display: string,
type: MenuType,
command?: MenuCommand,
subMenu?: MenuConfig[],
}
export interface MenuPrinter {
getSelection(): Promise<MenuConfig>;
}