vis-core 0.18.0 → 0.18.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,5 @@
1
+ declare const _default: {
2
+ token: string | undefined;
3
+ getInfo(): any;
4
+ };
5
+ export default _default;
@@ -5,9 +5,9 @@ import Pencil, { BaseObject } from 'gl-draw';
5
5
  import History from './history';
6
6
  import Viewport from './viewport';
7
7
  import Arc from "../vis/all/objects/Arc";
8
+ import Base from "../vis/base";
8
9
  export * as THREE from 'three';
9
10
  export { MeshLineMaterial } from 'gl-draw/dist/objects';
10
- import Base from "../vis/base";
11
11
  interface SelectedMeta {
12
12
  name: string;
13
13
  object: THREE.Mesh;
package/dist/index.d.ts CHANGED
@@ -2,6 +2,6 @@ import '@/styles/vis.css';
2
2
  export * as THREE from 'three';
3
3
  export * as TWEEN from '@tweenjs/tween.js';
4
4
  export * from "./vis/index";
5
- export declare const exported: {
6
- accessToken: undefined;
5
+ export declare const access: {
6
+ token: string;
7
7
  };