smartnginx/dist/smartnginx.classes.nginxconfig.d.ts

11 lines
322 B
TypeScript
Raw Permalink Normal View History

2016-07-06 06:30:33 +00:00
import { NginxZone } from "./smartnginx.classes.nginxzone";
2016-07-06 01:14:44 +00:00
export declare class NginxConfig {
2016-07-06 01:33:39 +00:00
zones: NginxZone[];
2016-07-06 04:33:31 +00:00
isDeployed: boolean;
2016-07-06 01:14:44 +00:00
constructor();
2016-07-06 01:33:39 +00:00
addZone(zoneArg: NginxZone): void;
listZones(): NginxZone[];
removeZones(zoneArg: NginxZone): void;
2016-07-06 04:33:31 +00:00
deploy(nginxRestartArg?: boolean): void;
2016-07-06 01:14:44 +00:00
}