fix interface name

This commit is contained in:
2016-08-02 23:47:27 +02:00
parent 3cef614bb3
commit 1cca4f95bc
3 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@ import * as snippets from "./smartnginx.snippets"
/**
* the host config data that NginxHost needs to create a valid instance
*/
export interface hostConfigData {
export interface IHostConfigData {
hostName: string,
type: hostTypes,
destination: string
@ -24,7 +24,7 @@ export class NginxHost {
type: hostTypes;
destination: string;
configString: string; // the actual host config file as string
constructor(optionsArg:hostConfigData) {
constructor(optionsArg:IHostConfigData) {
this.hostName = optionsArg.hostName;
this.type = optionsArg.type;
this.destination = optionsArg.destination;