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 275b6db commit 1ffb378Copy full SHA for 1ffb378
packages/data-connect/src/api/Reference.ts
@@ -30,12 +30,14 @@ export interface OpResult<Data> {
30
fetchTime: string;
31
}
32
33
+const fdcSymbol = Symbol();
34
+
35
export interface OperationRef<Data, Variables> {
36
name: string;
37
variables: Variables;
38
refType: ReferenceType;
39
dataConnect: DataConnect;
- __keepForTypingsOnly?: Data; // Never used, just here to ensure that the Data type doesn't get erased.
40
+ [fdcSymbol]: Data; // Never used, just here to ensure that the Data type doesn't get erased.
41
42
43
export interface DataConnectResult<Data, Variables> extends OpResult<Data> {
0 commit comments