@neurodyn/model-viewer 0.0.0-canary-20260604101212
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.
- package/dist/index.d.ts +23 -0
- package/dist/model-viewer.embed.min.js +6351 -0
- package/dist/model-viewer.embed.min.js.LICENSE.txt +205 -0
- package/dist/model-viewer.global.min.js +6351 -0
- package/dist/model-viewer.global.min.js.LICENSE.txt +205 -0
- package/dist/model-viewer.js +104 -0
- package/package.json +47 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export declare class ModelViewer {
|
|
2
|
+
private readonly roots;
|
|
3
|
+
private destroyed;
|
|
4
|
+
constructor(target: string | Element, props?: ViewerOptions);
|
|
5
|
+
destroy(): void;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export declare class ModelViewerDialog {
|
|
9
|
+
private readonly renderer;
|
|
10
|
+
private readonly triggers;
|
|
11
|
+
private readonly props;
|
|
12
|
+
private destroyed;
|
|
13
|
+
constructor(target: string | Element, props?: ViewerOptions);
|
|
14
|
+
destroy(): void;
|
|
15
|
+
private handleClick;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
declare interface ViewerOptions {
|
|
19
|
+
tinuuid?: string | null;
|
|
20
|
+
hid?: string | null;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export { }
|