ft_transcendence/pong/node_modules/@nestjs/common/interfaces/modules/introspection-result.interface.d.ts
2023-05-02 19:15:50 +02:00

11 lines
205 B
TypeScript

import { Scope } from '../scope-options.interface';
/**
* @publicApi
*/
export interface IntrospectionResult {
/**
* Enum defining lifetime of host class or factory.
*/
scope: Scope;
}