UNPKG

@sap/adp-cf

Version:
28 lines (27 loc) 538 B
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 {};