smartvhost/ts/interfaces/vhostconfig.ts

9 lines
222 B
TypeScript
Raw Permalink Normal View History

2020-02-07 20:00:01 +00:00
export type TVHostConfigType = 'folder' | 'ipAndPort' | 'localPort' | 'domain';
export interface IVHostConfig {
hostName: string;
type: TVHostConfigType;
target: string;
privateKey: string;
publicKey: string;
}