graphiql: update API reports
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
## API Report File for "@backstage/plugin-graphiql"
|
||||
|
||||
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
||||
|
||||
```ts
|
||||
import { BackstagePlugin } from '@backstage/frontend-plugin-api';
|
||||
import { Extension } from '@backstage/frontend-plugin-api';
|
||||
import { GraphQLEndpoint } from '@backstage/plugin-graphiql';
|
||||
import { PortableSchema } from '@backstage/frontend-plugin-api';
|
||||
|
||||
// @alpha (undocumented)
|
||||
export function createEndpointExtension<TConfig extends {}>(options: {
|
||||
id: string;
|
||||
configSchema?: PortableSchema<TConfig>;
|
||||
factory: (options: { config: TConfig }) => {
|
||||
endpoint: GraphQLEndpoint;
|
||||
};
|
||||
}): Extension<TConfig>;
|
||||
|
||||
// @alpha (undocumented)
|
||||
const _default: BackstagePlugin;
|
||||
export default _default;
|
||||
|
||||
// @alpha (undocumented)
|
||||
export const graphiqlBrowseApi: Extension<{}>;
|
||||
|
||||
// @alpha (undocumented)
|
||||
export const GraphiqlPage: Extension<{
|
||||
path: string;
|
||||
}>;
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
```
|
||||
@@ -28,7 +28,7 @@ import {
|
||||
graphQlBrowseApiRef,
|
||||
GraphQLEndpoints,
|
||||
GraphQLEndpoint,
|
||||
} from './lib/api';
|
||||
} from '@backstage/plugin-graphiql';
|
||||
import { createApiFactory } from '@backstage/core-plugin-api';
|
||||
|
||||
/** @alpha */
|
||||
|
||||
Reference in New Issue
Block a user