fix(core): update

This commit is contained in:
2019-08-20 18:42:52 +02:00
parent 855ede784d
commit 0a8ae81fd0
8 changed files with 1475 additions and 20 deletions

7
ts/interfaces/index.ts Normal file
View File

@ -0,0 +1,7 @@
export interface IHostConfig {
hostName: string;
destination: string;
destinationPort: number;
privateKey: string;
publicKey: string;
}