smartnginx/ts/interfaces/hostconfig.ts

8 lines
146 B
TypeScript
Raw Normal View History

2019-01-09 11:15:28 +00:00
export interface IHostConfig {
hostName: string;
destination: string;
2019-01-19 14:41:51 +00:00
destinationPort: number;
2019-01-09 11:15:28 +00:00
privateKey: string;
publicKey: string;
}