plugins: refactory to use default export for new backend system

Co-authored-by: Fredrik Adelöw <freben@gmail.com>
Co-authored-by: Camila Belo <camilaibs@gmail.com>
Co-authored-by: Johan Haals <johan.haals@gmail.com>
Co-authored-by: Philipp Hugenroth <philipph@spotify.com>
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-09-06 14:57:24 +02:00
parent cb7fc410ed
commit 71114ac50e
120 changed files with 277 additions and 200 deletions
+2 -1
View File
@@ -96,7 +96,8 @@ export class AzureDevOpsApi {
}
// @public
export const azureDevOpsPlugin: () => BackendFeature;
const azureDevOpsPlugin: () => BackendFeature;
export default azureDevOpsPlugin;
// @public (undocumented)
export function createRouter(options: RouterOptions): Promise<express.Router>;
+1 -1
View File
@@ -22,4 +22,4 @@
export { AzureDevOpsApi } from './api';
export * from './service/router';
export { azureDevOpsPlugin } from './plugin';
export { azureDevOpsPlugin as default } from './plugin';