UNPKG

object-wrapper

Version:

Wraps all of an object's functions in a wrapper of your choosing.

10 lines (9 loc) 190 B
/** * Contains information about the function. */ export interface IFunctionInfo { namespace: any; namespaceName: string; originalFcn: Function; originalFcnName: string; }