5 lines
91 B
TypeScript
5 lines
91 B
TypeScript
export interface IMenuItem {
|
|
name: string;
|
|
action: <T = any>() => void | Promise<T>;
|
|
}
|