Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions lib/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,6 @@ export type {
YAxisName
} from '../src/types/core/layout';

// ---------------------------------------------------------------------------
// Trace data
// ---------------------------------------------------------------------------

export type { Data } from '../src/types/core/data';

// ---------------------------------------------------------------------------
// Configuration
// ---------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions src/types/core/data.internal.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
* Internal data/trace types (not in public API)
*
* These are runtime-resolved versions of trace data with internal state
* properties. For public trace types, see data.d.ts.
* properties. For public trace types, see generated/schema.d.ts.
*/

import type { Datum } from '../lib/common';
import type { Data } from './data';
import type { Data } from '../generated/schema';

/**
* Calculated trace data (internal).
Expand Down