UNPKG

@omnia/tooling-composers

Version:

Provide tooling to work with manifest things.

15 lines (14 loc) 572 B
import { IDevelopmentHostingEnvironment, DevelopmentHostingInfo } from "./models/DevelopmentEnvironment"; export declare function getHosting(): { disableAutoReload: boolean; hmr: boolean; port: number; } & DevelopmentHostingInfo; export declare class DevelopmentHostingEnvironment implements IDevelopmentHostingEnvironment { private localOverride; constructor(localOverride: boolean); use: (hostingInfo: DevelopmentHostingInfo) => void; private static getServerManifests; private static clearState; private static ServerSubscription; }