UNPKG

@egjs/view3d

Version:

Fast & Customizable glTF 3D model viewer, packed with full of features!

21 lines (16 loc) 414 B
/* * Copyright (c) 2020 NAVER Corp. * egjs projects are licensed under the MIT license */ import View3D from "../View3D"; /* eslint-disable @typescript-eslint/no-empty-function, @typescript-eslint/no-unused-vars */ /** * Plugin for View3D * @interface */ interface View3DPlugin { init(view3D: View3D): Promise<void>; teardown(view3D: View3D): void; } /* eslint-enable */ export default View3DPlugin;