shop-components 0.0.16 → 0.0.18

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.
@@ -24,6 +24,8 @@ export declare class DeviceViewer extends LitElement {
24
24
  fit: () => void;
25
25
  generateBVH: () => void;
26
26
  download: () => void;
27
+ clearAMR: () => void;
28
+ addAMR: () => void;
27
29
  cancel: () => void;
28
30
  dragstart: (e: DragEvent) => void;
29
31
  dragend: (e: DragEvent) => void;
@@ -24,6 +24,7 @@ export declare class DeviceLines extends LitElement {
24
24
  hide(): void;
25
25
  show(): void;
26
26
  addLine(line: Line): void;
27
+ clear(): void;
27
28
  removeLine(line: Line): void;
28
29
  getLineByName(name: string): Line[];
29
30
  getLineBySlot(slot: string): Line[];
@@ -95,6 +95,7 @@ export declare class Scene3D {
95
95
  changeLogo(logo: Logo, url: string): void;
96
96
  generateBVH(): Promise<void>;
97
97
  download(): void;
98
+ clearAMR(): void;
98
99
  addAMR(url: string): Promise<void>;
99
100
  fit: () => void;
100
101
  select(obj: string | Object3D | Object3D[]): void;
@@ -0,0 +1,5 @@
1
+ import { Scene3D } from './device-viewer/scene';
2
+ export declare abstract class Plugin {
3
+ private static _app;
4
+ static init(app: Scene3D): void;
5
+ }
File without changes