UNPKG

@namefully/ng

Version:
7 lines (6 loc) 274 B
export declare function executeInnerMethod(context: any, fn: Function, vargs: any[]): string; export declare type MethodOf<T> = FilterFunctionKeyOnly<T>[keyof T]; declare type FilterFunctionKeyOnly<T> = { [K in keyof T]: T[K] extends Function ? K : never; }; export {};