smartvhost/ts/interfaces/vhostconfig.ts
2020-02-07 20:00:01 +00:00

9 lines
222 B
TypeScript

export type TVHostConfigType = 'folder' | 'ipAndPort' | 'localPort' | 'domain';
export interface IVHostConfig {
hostName: string;
type: TVHostConfigType;
target: string;
privateKey: string;
publicKey: string;
}