update api reports
Signed-off-by: Paul Schultz <pschultz@pobox.com> fix linting Signed-off-by: Paul Schultz <pschultz@pobox.com>
This commit is contained in:
@@ -9,7 +9,7 @@ import { ConfigurableExtensionDataRef } from '@backstage/frontend-plugin-api';
|
||||
import { ExtensionDefinition } from '@backstage/frontend-plugin-api';
|
||||
import { FrontendPlugin } from '@backstage/frontend-plugin-api';
|
||||
import { IconComponent } from '@backstage/core-plugin-api';
|
||||
import { default as React_2 } from 'react';
|
||||
import { JSX as JSX_2 } from 'react';
|
||||
import { RouteRef } from '@backstage/frontend-plugin-api';
|
||||
|
||||
// @alpha (undocumented)
|
||||
@@ -65,11 +65,7 @@ const _default: FrontendPlugin<
|
||||
path?: string | undefined;
|
||||
};
|
||||
output:
|
||||
| ConfigurableExtensionDataRef<
|
||||
React_2.JSX.Element,
|
||||
'core.reactElement',
|
||||
{}
|
||||
>
|
||||
| ConfigurableExtensionDataRef<JSX_2.Element, 'core.reactElement', {}>
|
||||
| ConfigurableExtensionDataRef<string, 'core.routing.path', {}>
|
||||
| ConfigurableExtensionDataRef<
|
||||
RouteRef<AnyRouteRefParams>,
|
||||
|
||||
@@ -4,18 +4,18 @@
|
||||
|
||||
```ts
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { default as default_2 } from 'react';
|
||||
import { JSX as JSX_2 } from 'react';
|
||||
import { default as React_2 } from 'react';
|
||||
import { ElementType } from 'react';
|
||||
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
||||
import { ReactNode } from 'react';
|
||||
import { RouteRef } from '@backstage/core-plugin-api';
|
||||
import { TabProps } from '@material-ui/core/Tab';
|
||||
|
||||
// @public (undocumented)
|
||||
export const ConfigContent: () => React_2.JSX.Element;
|
||||
export const ConfigContent: () => JSX_2.Element;
|
||||
|
||||
// @public
|
||||
export const DevToolsLayout: {
|
||||
({ children, title, subtitle }: DevToolsLayoutProps): default_2.JSX.Element;
|
||||
({ children, title, subtitle }: DevToolsLayoutProps): JSX_2.Element;
|
||||
Route: (props: SubRoute) => null;
|
||||
};
|
||||
|
||||
@@ -23,7 +23,7 @@ export const DevToolsLayout: {
|
||||
export type DevToolsLayoutProps = {
|
||||
title?: string;
|
||||
subtitle?: string;
|
||||
children?: default_2.ReactNode;
|
||||
children?: ReactNode;
|
||||
};
|
||||
|
||||
// @public (undocumented)
|
||||
@@ -38,10 +38,10 @@ export const devToolsPlugin: BackstagePlugin<
|
||||
>;
|
||||
|
||||
// @public (undocumented)
|
||||
export const ExternalDependenciesContent: () => React_2.JSX.Element;
|
||||
export const ExternalDependenciesContent: () => JSX_2.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export const InfoContent: () => React_2.JSX.Element;
|
||||
export const InfoContent: () => JSX_2.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export type SubRoute = {
|
||||
@@ -49,9 +49,9 @@ export type SubRoute = {
|
||||
title: string;
|
||||
children: JSX.Element;
|
||||
tabProps?: TabProps<
|
||||
default_2.ElementType,
|
||||
ElementType,
|
||||
{
|
||||
component?: default_2.ElementType;
|
||||
component?: ElementType;
|
||||
}
|
||||
>;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user