UNPKG

@nestjs-mod/common

Version:

A collection of utilities for unifying NestJS applications and modules

16 lines (15 loc) 528 B
import { Type } from '@nestjs/common'; export declare function nameItClass(name: string, cls: Type): { new (...args: any[]): { [x: string]: any; }; apply(this: Function, thisArg: any, argArray?: any): any; call(this: Function, thisArg: any, ...argArray: any[]): any; bind(this: Function, thisArg: any, ...argArray: any[]): any; toString(): string; readonly length: number; arguments: any; caller: Function; readonly name: string; [Symbol.hasInstance](value: any): boolean; };