smartnginx/dist/smartnginx.classes.nginxzone.d.ts
2016-07-06 08:30:33 +02:00

15 lines
293 B
TypeScript

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