9 lines
222 B
TypeScript
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;
|
|
} |