recoder-code
Version:
🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!
11 lines (10 loc) • 473 B
TypeScript
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>;
}