mirror of
https://github.com/brunopostle/ifcurl.git
synced 2026-07-12 02:08:13 +00:00
7 lines
331 B
JavaScript
7 lines
331 B
JavaScript
|
|
// Entry point bundled by build.js into viewer-deps.js.
|
||
|
|
// Re-exports the three viewer dependencies as named namespace exports so
|
||
|
|
// viewer.html can do: import { THREE, OBC, JSZip } from "/assets/viewer-deps.js"
|
||
|
|
export * as THREE from "three";
|
||
|
|
export * as OBC from "@thatopen/components";
|
||
|
|
export { default as JSZip } from "jszip";
|