UNPKG

@tsclass/tsclass

Version:

Provides TypeScript definitions for various business, financial, networking, content, and other common classes.

6 lines (5 loc) 134 B
export interface IMenuItem<T = any, U = any> { name: string; iconName?: string; action: (optionsArg?: T) => Promise<U>; }