@egjs/view3d
Version:
Fast & Customizable glTF 3D model viewer, packed with full of features!
31 lines (28 loc) • 909 B
text/typescript
/*
* Copyright (c) 2020 NAVER Corp.
* egjs projects are licensed under the MIT license
*/
import ControlBar, { ControlBarOptions } from "./ControlBar";
import ControlBarItem from "./ControlBarItem";
import AnimationProgressBar, { AnimationProgressBarOptions } from "./AnimationProgressBar";
import AnimationSelector, { AnimationSelectorOptions } from "./AnimationSelector";
import FullscreenButton, { FullscreenButtonOptions } from "./FullscreenButton";
import PlayButton, { PlayButtonOptions } from "./PlayButton";
import NavigationGizmo, { NavigationGizmoOptions } from "./NavigationGizmo";
export {
ControlBar,
AnimationProgressBar,
AnimationSelector,
FullscreenButton,
PlayButton,
NavigationGizmo
};
export type {
ControlBarOptions,
ControlBarItem,
AnimationProgressBarOptions,
AnimationSelectorOptions,
FullscreenButtonOptions,
PlayButtonOptions,
NavigationGizmoOptions
};