Files
tsclass/ts/website/menuitem.ts
2023-09-13 13:31:30 +02:00

6 lines
128 B
TypeScript

export interface IMenuItem<T = any, U = any> {
name: string;
iconName?: string;
action: (optionsArg?: T) => Promise<U>;
}