pandora
Version:
A powerful and lightweight application manager for Node.js applications powered by TypeScript.
18 lines (17 loc) • 581 B
TypeScript
import { ApplicationRepresentation } from '../domain';
import { ComplexHandler } from '../daemon/ComplexHandler';
import { ProcessBootstrap } from '../application/ProcessBootstrap';
/**
* Class DebugApplicationLoader
* For a profile.js application to debugging
*/
export declare class DebugApplicationLoader {
protected options: ApplicationRepresentation;
protected master: ComplexHandler | ProcessBootstrap;
constructor(options: ApplicationRepresentation);
/**
* Start debug application
* @return {Promise<void>}
*/
start(): Promise<void>;
}