@backstage/backend-plugin-api
Version:
Core API used by Backstage backend plugins
20 lines (16 loc) • 632 B
JavaScript
;
var backendPluginApi = require('@backstage/backend-plugin-api');
const actionsServiceRef = backendPluginApi.createServiceRef({
id: "alpha.core.actions"
});
const actionsRegistryServiceRef = backendPluginApi.createServiceRef({
id: "alpha.core.actionsRegistry"
});
const rootSystemMetadataServiceRef = backendPluginApi.createServiceRef({
id: "alpha.core.rootSystemMetadata",
scope: "root"
});
exports.actionsRegistryServiceRef = actionsRegistryServiceRef;
exports.actionsServiceRef = actionsServiceRef;
exports.rootSystemMetadataServiceRef = rootSystemMetadataServiceRef;
//# sourceMappingURL=refs.cjs.js.map