UNPKG

tsioc

Version:

tsioc is AOP, Ioc container, via typescript decorator

7 lines (6 loc) 311 B
import { AdviceMetadata } from './metadatas/index'; import { MatchPointcut } from './joinpoints/index'; import { Type, ObjectMap } from '../types'; export interface IAdviceMatcher { match(aspectType: Type<any>, type: Type<any>, adviceMetas?: ObjectMap<AdviceMetadata[]>, instance?: any): MatchPointcut[]; }