pandora
Version:
A powerful and lightweight application manager for Node.js applications powered by TypeScript.
19 lines (18 loc) • 493 B
TypeScript
import { ApplicationRepresentation } from '../domain';
/**
* Class ProcessBootstrap
*/
export declare class ProcessBootstrap {
static processName: string;
entry: string;
applicationRepresentation: ApplicationRepresentation;
constructor(entry: string, options: ApplicationRepresentation);
/**
* start process
* @returns {Promise<void>}
*/
start(): Promise<void>;
injectMonitor(): void;
static cmd(): void;
}
export declare function cmd(): void;