1 | import { PipeTransform, Type } from '@nestjs/common';
|
2 | import 'reflect-metadata';
|
3 | import { RpcParamtype } from '../enums/rpc-paramtype.enum';
|
4 | export declare function createRpcParamDecorator(paramtype: RpcParamtype): (...pipes: (Type<PipeTransform> | PipeTransform)[]) => ParameterDecorator;
|
5 | export declare const createPipesRpcParamDecorator: (paramtype: RpcParamtype) => (data?: any, ...pipes: (Type<PipeTransform> | PipeTransform)[]) => ParameterDecorator;
|