pandora
Version:
14 lines (13 loc) • 532 B
TypeScript
import { ApplicationRepresentation } from '../domain';
import { ProcfileReconciler } from './ProcfileReconciler';
/**
* Class ClusterSupport
*/
export declare class ClusterSupport {
/**
* Make a shim procfile.js when start mode be cluster, to support the start mode cluster
* @param {ApplicationRepresentation} appRepresentation
* @param {ProcfileReconciler} procfileReconciler
*/
static attachShimProcfile(appRepresentation: ApplicationRepresentation, procfileReconciler: ProcfileReconciler): void;
}