UNPKG

tsioc

Version:

tsioc is AOP, Ioc container, via typescript decorator

7 lines (6 loc) 379 B
import { AroundMetadata } from '../metadatas/index'; import { IAdviceDecorator } from './Advice'; export interface IAroundDecorator<T extends AroundMetadata> extends IAdviceDecorator<T> { (pointcut?: string | RegExp, args?: string, returning?: string, throwing?: string, annotation?: string): MethodDecorator; } export declare const Around: IAroundDecorator<AroundMetadata>;