Files
smartnginx/ts/interfaces/hostconfig.ts

8 lines
146 B
TypeScript
Raw Normal View History

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