pandora
Version:
A powerful and lightweight application manager for Node.js applications powered by TypeScript.
34 lines (33 loc) • 1.14 kB
TypeScript
import { ProcfileReconciler } from './ProcfileReconciler';
import { ProcessRepresentationChainModifier } from './ProcessRepresentationChainModifier';
/**
* Class ProcfileReconcilerAccessor
* A easy way to access ProcfileReconciler
*/
export declare class ProcfileReconcilerAccessor {
private procfileReconciler;
get dev(): boolean;
get appName(): string;
get appDir(): string;
constructor(procfileReconciler: ProcfileReconciler);
/**
* define process
* @param processName
* @return {ProcessRepresentationChainModifier}
*/
process(processName: string): ProcessRepresentationChainModifier;
/**
* Define fork a process
* @param processName
* @param entryFile
* @return {ProcessRepresentationChainModifier}
*/
fork(processName: string, entryFile: any): ProcessRepresentationChainModifier;
private clusterCount;
/**
* @param path
* @return {ProcessRepresentationChainModifier}
*/
cluster(entryFile: any): ProcessRepresentationChainModifier;
cluster(processName: string, entryFile: any): ProcessRepresentationChainModifier;
}