smartnginx/dist/smartnginx.classes.nginxzone.d.ts
2016-07-08 04:24:07 +02:00

17 lines
339 B
TypeScript

export declare enum zoneTypes {
reverseProxy = 0,
static = 1,
}
export declare class NginxZone {
zoneName: string;
type: zoneTypes;
destination: string;
configString: string;
constructor(optionsArg: {
zoneName: string;
type: zoneTypes;
destination: string;
});
deploy(): void;
}