smartproxy/ts/interfaces/index.ts
2019-08-20 18:43:15 +02:00

8 lines
146 B
TypeScript

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