@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
15 lines (14 loc) • 508 B
TypeScript
import { AppInstanceRollupViewRegistration } from "../apps/AppInstanceRollup";
export interface IAppInstanceRollupApi {
viewRegistration: Promise<IAppInstanceRollupViewRegistrationApi>;
}
declare module "./UxApi" {
interface IOmniaUxApi {
apps: {
appInstanceRollup: IAppInstanceRollupApi;
};
}
}
export interface IAppInstanceRollupViewRegistrationApi {
registerViews: (providers: AppInstanceRollupViewRegistration | AppInstanceRollupViewRegistration[]) => void;
}