smartproxy/ts/interfaces/index.ts
2019-08-20 18:42:52 +02:00

7 lines
145 B
TypeScript

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