Reintroduce export of defaultConfigLoader
Signed-off-by: Oliver Sand <oliver.sand@sda-se.com>
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/core-app-api': patch
|
||||
---
|
||||
|
||||
Reintroduce export of `defaultConfigLoader`.
|
||||
@@ -200,6 +200,9 @@ export { ConfigReader }
|
||||
// @public
|
||||
export function createApp(options?: AppOptions): PrivateAppImpl;
|
||||
|
||||
// @public
|
||||
export const defaultConfigLoader: AppConfigLoader;
|
||||
|
||||
// @public
|
||||
export class ErrorAlerter implements ErrorApi {
|
||||
constructor(alertApi: AlertApi, errorApi: ErrorApi);
|
||||
|
||||
@@ -14,5 +14,5 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
export { createApp } from './createApp';
|
||||
export { createApp, defaultConfigLoader } from './createApp';
|
||||
export * from './types';
|
||||
|
||||
@@ -21,6 +21,7 @@ describe('index', () => {
|
||||
expect(index).toEqual({
|
||||
// Public API
|
||||
createApp: expect.any(Function),
|
||||
defaultConfigLoader: expect.any(Function),
|
||||
ApiProvider: expect.any(Function),
|
||||
// TODO(Rugvip): Figure out if we need these
|
||||
ApiFactoryRegistry: expect.any(Function),
|
||||
|
||||
Reference in New Issue
Block a user