@backstage/plugin-techdocs
Version:
The Backstage plugin that renders technical documentation for your components
16 lines (13 loc) • 446 B
JavaScript
import { createRouteRef } from '@backstage/core-plugin-api';
const rootRouteRef = createRouteRef({
id: "techdocs:index-page"
});
const rootDocsRouteRef = createRouteRef({
id: "techdocs:reader-page",
params: ["namespace", "kind", "name"]
});
const rootCatalogDocsRouteRef = createRouteRef({
id: "techdocs:catalog-reader-view"
});
export { rootCatalogDocsRouteRef, rootDocsRouteRef, rootRouteRef };
//# sourceMappingURL=routes.esm.js.map