Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

sentry / @nestjs/core   js

Repository URL to install this package:

Version: 7.0.10 

/ pipes / pipes-consumer.d.ts

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<TInput>;
    applyPipes<TInput = unknown>(value: TInput, { metatype, type, data }: {
        metatype: any;
        type?: any;
        data?: any;
    }, transforms: PipeTransform[]): Promise<TInput>;
}