Skip to content

Commit cfba9a9

Browse files
committed
api-extractor
1 parent ad863f4 commit cfba9a9

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.api-reports/api-report-react.api.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -209,19 +209,20 @@ export interface ApolloContextValue {
209209
client?: ApolloClient;
210210
}
211211

212-
// Warning: (ae-forgotten-export) The symbol "ApolloProviderProps" needs to be exported by the entry point index.d.ts
213-
//
214-
// @public (undocumented)
215-
export const ApolloProvider: ReactTypes.FC<ApolloProviderProps>;
216-
217212
// @public (undocumented)
218-
interface ApolloProviderProps {
213+
export namespace ApolloProvider {
219214
// (undocumented)
220-
children: ReactTypes.ReactNode | ReactTypes.ReactNode[] | null;
221-
// (undocumented)
222-
client: ApolloClient;
215+
export interface Props {
216+
// (undocumented)
217+
children: ReactTypes.ReactNode | ReactTypes.ReactNode[] | null;
218+
// (undocumented)
219+
client: ApolloClient;
220+
}
223221
}
224222

223+
// @public (undocumented)
224+
export const ApolloProvider: ReactTypes.FC<ApolloProvider.Props>;
225+
225226
// @public (undocumented)
226227
interface ApolloQueryResult<T> {
227228
// (undocumented)

0 commit comments

Comments
 (0)