@sap-ux/project-access
Version:
Library to access SAP Fiori tools projects
22 lines • 648 B
TypeScript
import type { I18nBundle } from '@sap-ux/i18n';
export interface I18nBundles {
/**
* i18n bundle for `i18n` of `"sap.app"` namespace in `manifest.json` file
*/
'sap.app': I18nBundle;
/**
* i18n bundle for `models` entry of `sap.ui5` namespace in `manifest.json` file with type `sap.ui.model.resource.ResourceModel`
*/
models: {
[modelKey: string]: I18nBundle;
};
/**
* i18n bundle for cap services
*/
service: I18nBundle;
/**
* Optional errors object containing error records of i18n bundles
*/
errors?: Record<string, Error>;
}
//# sourceMappingURL=index.d.ts.map