@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
17 lines (16 loc) • 340 B
TypeScript
export interface IOmniaFxApi {
}
export interface IExtend {
fx: IOmniaFxApi;
}
export interface IOmniaFxApiManifest {
}
export interface IExtendApiManifest {
fx: IOmniaFxApiManifest;
}
export interface ApiPath {
path?: string;
}
export interface IExtendApiManifestWithConfiguration<T> {
configure: (config: T) => ApiPath;
}