fix(core): initial

This commit is contained in:
2020-02-07 20:00:01 +00:00
parent 029daf272f
commit 9abd746384
9 changed files with 136 additions and 33 deletions

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

@ -0,0 +1 @@
export * from './vhostconfig';

View File

@ -0,0 +1,9 @@
export type TVHostConfigType = 'folder' | 'ipAndPort' | 'localPort' | 'domain';
export interface IVHostConfig {
hostName: string;
type: TVHostConfigType;
target: string;
privateKey: string;
publicKey: string;
}