UNPKG

272 BTypeScriptView Raw
1import { Abstract, Type } from '@nestjs/common/interfaces';
2import { RuntimeException } from './runtime.exception';
3export declare class InvalidClassScopeException extends RuntimeException {
4 constructor(metatypeOrToken: Type<any> | Abstract<any> | string | symbol);
5}