@egjs/view3d
Version:
Fast & Customizable glTF 3D model viewer, packed with full of features!
30 lines (27 loc) • 779 B
text/typescript
/*
* Copyright (c) 2020 NAVER Corp.
* egjs projects are licensed under the MIT license
*/
import ARScene from "./ARScene";
import ARSession from "./ARSession";
import WebARSession, { WebARSessionOptions } from "./WebARSession";
import SceneViewerSession, { SceneViewerSessionOptions } from "./SceneViewerSession";
import QuickLookSession, { QuickLookSessionOptions } from "./QuickLookSession";
import DOMOverlay from "./features/DOMOverlay";
import HitTest from "./features/HitTest";
import LightEstimation from "./features/LightEstimation";
export {
ARScene,
WebARSession,
SceneViewerSession,
QuickLookSession,
DOMOverlay,
HitTest,
LightEstimation
};
export type {
ARSession,
WebARSessionOptions,
SceneViewerSessionOptions,
QuickLookSessionOptions
};