import * as Constants from "../constants"; import * as ProcessShape from "../processshape"; import * as Services from "../services"; import * as Store from "../stores"; import * as Utils from "../utils"; import * as Routing from "../routing"; import * as SettingProvider from "../settingsprovider"; import * as MSModels from "../models"; type MSFxApi = typeof Routing & typeof Constants & typeof ProcessShape & typeof Services & typeof Store & typeof Utils & typeof SettingProvider; export interface IMSFxApi { fx: Promise; models: Promise; } export {};