smartproxy/ts/interfaces/index.ts

8 lines
148 B
TypeScript
Raw Normal View History

2019-08-20 16:42:52 +00:00
export interface IHostConfig {
hostName: string;
2019-08-20 17:02:13 +00:00
destinationIp: string;
2019-08-20 16:42:52 +00:00
destinationPort: number;
privateKey: string;
publicKey: string;
2019-08-20 16:43:15 +00:00
}