File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff 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)
226227interface ApolloQueryResult <T > {
227228 // (undocumented)
You can’t perform that action at this time.
0 commit comments