UNPKG

pandora

Version:

A powerful and lightweight application manager for Node.js applications powered by TypeScript.

14 lines (13 loc) 566 B
import { Daemon } from './Daemon'; import { ApplicationIntrospectionResult, DaemonIntrospectionResult } from '../domain'; export declare class DaemonIntrospection { daemon: Daemon; globalProperties: any; constructor(daemon: Daemon); listApplication(): Promise<ApplicationIntrospectionResult[]>; getApplictaionByName(appName: string): Promise<ApplicationIntrospectionResult>; getLoadedGlobalConfigPaths(): string[]; getLoadedEndPointNames(): any[]; getLoadedReporterNames(): any[]; introspectDaemon(): DaemonIntrospectionResult; }