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

12 lines (11 loc) 424 B
/** * @module BootstrapConsole */ import { INestApplicationContext } from '@nestjs/common'; import { AbstractBootstrapConsole, CommonBootstrapConsoleOptions } from './abstract'; /** * A class to boot a nestjs application context from cli */ export declare class BootstrapConsole extends AbstractBootstrapConsole<INestApplicationContext, CommonBootstrapConsoleOptions> { create(): Promise<INestApplicationContext>; }