UNPKG

@ima/plugin-testing-integration

Version:

IMA.js plugin for integration testing

15 lines 444 B
/** * Extends default aop (from to-aop) behavior by saving the targets, * which can be cleared later with unAopAll function. * * @param {object | Function} target * @param {...any} args * @returns {*} native aop value */ export function aop(target: object | Function, ...args: any[]): any; /** * Clears aop hooks from all targets. */ export function unAopAll(): void; export { hookName, createHook }; //# sourceMappingURL=aop.d.ts.map