UNPKG

rucken

Version:

Console tools and scripts for nx and not only that I (EndyKaufman) use to automate the workflow and speed up the development process

13 lines (12 loc) 431 B
/** * @module ConsoleModule */ import { INestApplicationContext } from '@nestjs/common'; import { ConsoleScanner } from './scanner'; import { ConsoleService } from './service'; export declare class ConsoleModule { protected readonly service: ConsoleService; protected scanner: ConsoleScanner; constructor(service: ConsoleService); scan(app: INestApplicationContext, includedModules?: unknown[]): Promise<void>; }