We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbf22f0 commit 3fe4502Copy full SHA for 3fe4502
src/core/ApolloClient.ts
@@ -133,6 +133,13 @@ export declare namespace ApolloClient {
133
*/
134
incrementalHandler?: Incremental.Handler<any>;
135
136
+ /**
137
+ * @experimental
138
+ * Allows passing in "experiments", experimental features that might one day
139
+ * become part of Apollo Client's core functionality.
140
+ * Keep in mind that these features might change the core of Apollo Client.
141
+ * Do not pass in experiments that are not provided by Apollo.
142
+ */
143
experiments?: ApolloClient.Experiment[];
144
}
145
@@ -615,6 +622,7 @@ export declare namespace ApolloClient {
615
622
616
623
export interface Experiment {
617
624
(this: ApolloClient, options: ApolloClient.Options): void;
625
+ v: 1;
618
626
619
627
620
628
0 commit comments