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 3335828 commit a1cd236Copy full SHA for a1cd236
1 file changed
src/types/core/graph-div.d.ts
@@ -6,6 +6,7 @@
6
* Commonly referred to as `gd` in the codebase.
7
*/
8
9
+import type { CalcData } from '../traces/common';
10
import type { Config } from './config';
11
import type { FullData, PlotData } from './data';
12
import type { FullLayout, Layout } from './layout';
@@ -30,7 +31,7 @@ export interface GraphDiv extends HTMLDivElement {
30
31
_promises?: Promise<any>[];
32
_transitionData?: any;
33
_transitioning?: boolean;
- calcdata?: any[];
34
+ calcdata?: CalcData[][];
35
config?: Partial<Config>;
36
data?: Array<Partial<PlotData>>;
37
emit?: (event: string, ...args: any[]) => void;
0 commit comments