smartproxy/ts/interfaces/index.ts
2019-08-20 19:02:13 +02:00

8 lines
148 B
TypeScript

export interface IHostConfig {
hostName: string;
destinationIp: string;
destinationPort: number;
privateKey: string;
publicKey: string;
}