You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

10 lines
473 B

import { ArgumentMetadata, PipeTransform } from '@nestjs/common/interfaces';
export declare class PipesConsumer {
private readonly paramsTokenFactory;
apply<TInput = unknown>(value: TInput, { metatype, type, data }: ArgumentMetadata, pipes: PipeTransform[]): Promise<any>;
applyPipes<TInput = unknown>(value: TInput, { metatype, type, data }: {
metatype: any;
type?: any;
data?: any;
}, transforms: PipeTransform[]): Promise<any>;
}