@egjs/view3d
Version:
Fast & Customizable glTF 3D model viewer, packed with full of features!
24 lines (20 loc) • 488 B
text/typescript
/*
* Copyright (c) 2020 NAVER Corp.
* egjs projects are licensed under the MIT license
*/
import View3DPlugin from "./View3DPlugin";
import ARButton, { ARButtonOptions } from "./ARButton";
import AROverlay, { AROverlayOptions } from "./AROverlay";
import LoadingBar, { LoadingBarOptions } from "./LoadingBar";
export * from "./ControlBar";
export {
ARButton,
AROverlay,
LoadingBar
};
export type {
View3DPlugin,
ARButtonOptions,
AROverlayOptions,
LoadingBarOptions
};