/** * 验证器 * @param beforeFn 验证回调方法,回调方法中第一个为this,后续参数为当前装饰方法的形参,回调方法返回值会作为实参传入装饰器作用方法的最后一个形参 * @constructor */ export declare function Before(beforeFn: Function): (thisArgPrototype: any, methodName: string, propertyDescriptor: PropertyDescriptor) => void;