File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ exports['package exported files 1'] = {
6
6
" declarations/entry-esnext.d.ts" ,
7
7
" declarations/entry-peer.d.ts" ,
8
8
" declarations/entry-standalone.d.ts" ,
9
+ " declarations/index.d.ts" ,
9
10
" dist/esm.js" ,
10
11
" dist/esm.js.map" ,
11
12
" dist/vis-graph3d.min.js" ,
Original file line number Diff line number Diff line change
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 ;
You can’t perform that action at this time.
0 commit comments