tsioc
Version:
tsioc is AOP, Ioc container, via typescript decorator
18 lines (17 loc) • 333 B
TypeScript
import { Type } from '../../types';
import { MatchPointcut } from '../joinpoints/MatchPointcut';
/**
* AdviceInvokerData
*
* @export
* @interface Advicer
*/
export interface Advicer extends MatchPointcut {
/**
* aspect type.
*
* @type {Type<any>}
* @memberof Advicer
*/
aspectType: Type<any>;
}