From 421d30d23ada427d9b6656893810d248a83a4758 Mon Sep 17 00:00:00 2001 From: Ryan Brink <5607577+unredundant@users.noreply.github.com> Date: Mon, 18 Jul 2022 07:53:11 -0600 Subject: [PATCH] add tsdoc to public exports Signed-off-by: Ryan Brink <5607577+unredundant@users.noreply.github.com> --- plugins/apollo-explorer/src/plugin.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins/apollo-explorer/src/plugin.ts b/plugins/apollo-explorer/src/plugin.ts index b1025d32e7..6f7321689b 100644 --- a/plugins/apollo-explorer/src/plugin.ts +++ b/plugins/apollo-explorer/src/plugin.ts @@ -20,6 +20,10 @@ import { import { rootRouteRef } from './routes'; +/** + * Plugin that allows Apollo Explorer instances to be directly embedded into Backstage + * @public + */ export const apolloExplorerPlugin = createPlugin({ id: 'apollo-explorer', routes: { @@ -27,6 +31,10 @@ export const apolloExplorerPlugin = createPlugin({ }, }); +/** + * Main component that wraps the embedded graph(s) + * @public + */ export const ApolloExplorerPage = apolloExplorerPlugin.provide( createRoutableExtension({ name: 'ApolloExplorerPage',