fix api-report

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2023-08-16 09:49:03 +02:00
parent 7ca94cb808
commit 5f06e9f1da
3 changed files with 30 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
## API Report File for "@backstage/plugin-opencost"
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
/// <reference types="react" />
import { BackstagePlugin } from '@backstage/core-plugin-api';
import { RouteRef } from '@backstage/core-plugin-api';
// @public (undocumented)
export const OpenCostPage: () => JSX.Element;
// @public (undocumented)
export const openCostPlugin: BackstagePlugin<
{
root: RouteRef<undefined>;
},
{},
{}
>;
```
+6
View File
@@ -14,4 +14,10 @@
* limitations under the License.
*/
/**
* A Backstage plugin that integrates with OpenCost
*
* @packageDocumentation
*/
export { openCostPlugin, OpenCostPage } from './plugin';
+2
View File
@@ -21,6 +21,7 @@ import {
import { rootRouteRef } from './routes';
/** @public */
export const openCostPlugin = createPlugin({
id: 'opencost',
routes: {
@@ -28,6 +29,7 @@ export const openCostPlugin = createPlugin({
},
});
/** @public */
export const OpenCostPage = openCostPlugin.provide(
createRoutableExtension({
name: 'OpenCostPage',