UNPKG

@omnia/fx-models

Version:
11 lines (10 loc) 293 B
export interface DevelopmentHostingInfo { portNumber: number; hotModuleReplacement?: boolean; https?: boolean; pfxPath?: string; pfxPassphrase?: string; } export interface IDevelopmentHostingEnvironment { use: (hostingInfo: DevelopmentHostingInfo) => void; }