Skip to content

Commit 64c580e

Browse files
authored
fix(types): add missing index.d.ts referenced from package.json (#447)
1 parent 14f81a6 commit 64c580e

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

__snapshots__/package.test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ exports['package exported files 1'] = {
66
" declarations/entry-esnext.d.ts",
77
" declarations/entry-peer.d.ts",
88
" declarations/entry-standalone.d.ts",
9+
" declarations/index.d.ts",
910
" dist/esm.js",
1011
" dist/esm.js.map",
1112
" dist/vis-graph3d.min.js",

declarations/index.d.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// utils
2+
export * as util from "vis-util/esnext";
3+
4+
// data
5+
export { DataSet } from "vis-data/esnext";
6+
export { DataView } from "vis-data/esnext";
7+
export { Queue } from "vis-data/esnext";
8+
9+
// Graph3d
10+
export const Graph3d: any;
11+
export const graph3d: {
12+
Camera: any;
13+
Filter: any;
14+
Point2d: any;
15+
Point3d: any;
16+
Slider: any;
17+
StepNumber: any;
18+
};
19+
20+
// bundled external libraries
21+
export const Hammer: typeof import("hammerjs");
22+
export const keycharm: any;

0 commit comments

Comments
 (0)