Skip to content

Commit a1cd236

Browse files
committed
Add reference to CalcData
1 parent 3335828 commit a1cd236

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/types/core/graph-div.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
* Commonly referred to as `gd` in the codebase.
77
*/
88

9+
import type { CalcData } from '../traces/common';
910
import type { Config } from './config';
1011
import type { FullData, PlotData } from './data';
1112
import type { FullLayout, Layout } from './layout';
@@ -30,7 +31,7 @@ export interface GraphDiv extends HTMLDivElement {
3031
_promises?: Promise<any>[];
3132
_transitionData?: any;
3233
_transitioning?: boolean;
33-
calcdata?: any[];
34+
calcdata?: CalcData[][];
3435
config?: Partial<Config>;
3536
data?: Array<Partial<PlotData>>;
3637
emit?: (event: string, ...args: any[]) => void;

0 commit comments

Comments
 (0)