fix(core): initial
This commit is contained in:
1
ts/interfaces/index.ts
Normal file
1
ts/interfaces/index.ts
Normal file
@ -0,0 +1 @@
|
||||
export * from './vhostconfig';
|
9
ts/interfaces/vhostconfig.ts
Normal file
9
ts/interfaces/vhostconfig.ts
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user