UNPKG

node-web-mvc

Version:
8 lines (7 loc) 426 B
import JoinPoint from '../invocation/JoinPoint'; import { MethodInvocation } from '../invocation/MethodInvocation'; import AbstractMethodAdviceInterceptor from './AbstractMethodAdviceInterceptor'; export type MethodBeforeHandler = (joinPoint: JoinPoint) => void; export default class MethodBeforeAdviceInterceptor extends AbstractMethodAdviceInterceptor<MethodBeforeHandler> { invoke(invocation: MethodInvocation): any; }