UNPKG

pandora

Version:

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

19 lines (18 loc) 577 B
import { ApplicationRepresentation } from '../domain'; import { ApplicationHandler } from '../application/ApplicationHandler'; import { CoreSDK } from 'pandora-core-sdk'; /** * Class FrontApplicationLoader */ export declare class FrontApplicationLoader { protected representation: ApplicationRepresentation; protected applicationHandler: ApplicationHandler; protected coreSdk: CoreSDK; constructor(representation: ApplicationRepresentation); /** * Start * @return {Promise<void>} */ start(): Promise<void>; stop(): Promise<void>; }