6 lines
112 B
TypeScript
6 lines
112 B
TypeScript
export interface IMenuItem {
|
|
name: string;
|
|
iconName?: string;
|
|
action: <T = any>() => void | Promise<T>;
|
|
}
|