From 7a408f720b5e4e29131b04eaa41f0d1dfe3a7a06 Mon Sep 17 00:00:00 2001 From: Karl Haworth Date: Tue, 5 Mar 2024 14:24:09 -0500 Subject: [PATCH] update exports Signed-off-by: Karl Haworth --- .../src/components/ApolloExplorerPage/ApolloExplorerPage.tsx | 2 +- .../apollo-explorer/src/components/ApolloExplorerPage/index.ts | 2 +- plugins/apollo-explorer/src/index.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/apollo-explorer/src/components/ApolloExplorerPage/ApolloExplorerPage.tsx b/plugins/apollo-explorer/src/components/ApolloExplorerPage/ApolloExplorerPage.tsx index f6bda693b5..bb94c69063 100644 --- a/plugins/apollo-explorer/src/components/ApolloExplorerPage/ApolloExplorerPage.tsx +++ b/plugins/apollo-explorer/src/components/ApolloExplorerPage/ApolloExplorerPage.tsx @@ -23,7 +23,7 @@ import { useAsync } from 'react-use'; import { CircularProgress } from '@material-ui/core'; import { Alert } from '@material-ui/lab'; -type EndpointProps = { +export type EndpointProps = { title: string; graphRef: string; persistExplorerState?: boolean; diff --git a/plugins/apollo-explorer/src/components/ApolloExplorerPage/index.ts b/plugins/apollo-explorer/src/components/ApolloExplorerPage/index.ts index 0ecfb16ee5..1eef091978 100644 --- a/plugins/apollo-explorer/src/components/ApolloExplorerPage/index.ts +++ b/plugins/apollo-explorer/src/components/ApolloExplorerPage/index.ts @@ -14,4 +14,4 @@ * limitations under the License. */ export { ApolloExplorerPage } from './ApolloExplorerPage'; -export type { EndpointProps } from './components/ApolloExplorerPage'; +export type { EndpointProps } from './ApolloExplorerPage'; diff --git a/plugins/apollo-explorer/src/index.ts b/plugins/apollo-explorer/src/index.ts index 6d0be1311f..5911e246f0 100644 --- a/plugins/apollo-explorer/src/index.ts +++ b/plugins/apollo-explorer/src/index.ts @@ -20,4 +20,4 @@ * @packageDocumentation */ export { apolloExplorerPlugin, ApolloExplorerPage } from './plugin'; -export type { EndpointProps } from './ApolloExplorerPage'; +export type { EndpointProps } from './components/ApolloExplorerPage';