smartnginx/dist/smartnginx.classes.nginxzone.d.ts

17 lines
339 B
TypeScript
Raw Normal View History

2016-07-06 06:30:33 +00:00
export declare enum zoneTypes {
reverseProxy = 0,
static = 1,
}
export declare class NginxZone {
zoneName: string;
2016-07-08 02:24:07 +00:00
type: zoneTypes;
destination: string;
2016-07-06 06:30:33 +00:00
configString: string;
constructor(optionsArg: {
zoneName: string;
type: zoneTypes;
destination: string;
});
deploy(): void;
}