recoder-code
Version:
🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!
8 lines (7 loc) • 363 B
TypeScript
import type { DynamicModule, INestApplicationContext, Type } from '@nestjs/common';
import { ReplFunction } from '../repl-function';
import type { ReplFnDefinition } from '../repl.interfaces';
export declare class SelectReplFn extends ReplFunction {
fnDefinition: ReplFnDefinition;
action(token: DynamicModule | Type<unknown>): INestApplicationContext;
}