node-web-mvc
Version:
node spring mvc
9 lines (8 loc) • 358 B
TypeScript
import { ClazzType } from '../../interface/declare';
import Method from '../../interface/Method';
import Pointcut from './Pointcut';
export default class FunctionExpressionPointcut extends Pointcut {
private expression;
setExpression(expression: FunctionExpressionPointcut['matches']): void;
matches(clazz: ClazzType, method: Method): boolean;
}