interface IFactoryConfig {
    compose: ((relativePath: string) => string);
    host: string;
    port?: number;
    protocol: "http:" | "https:";
    url: string;
}

Properties

compose: ((relativePath: string) => string)

Return server url config with relative path

host: string

Server host

port?: number

Server port

protocol: "http:" | "https:"

Server portocol

url: string

Server url