@sap/adp-cf
Version:
cf service logic for all yeoman generators
28 lines (27 loc) • 538 B
TypeScript
export interface Manifest {
"sap.ui5": SapUi5Section;
"sap.fiori": SapFioriSection;
"sap.app": SapAppSection;
}
interface SapUi5Section {
flexEnabled: boolean;
models: UI5ManifestModel;
}
interface SapFioriSection {
registrationIds: string[];
}
interface SapAppSection {
ach: string;
}
export interface SapModel {
type: string;
uri: string;
settings?: SapModelSettings;
}
interface SapModelSettings {
bundleName: string;
}
interface UI5ManifestModel {
[key: string]: SapModel;
}
export {};