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

17 lines
339 B
TypeScript
Raw Normal View History

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