UNPKG

react-ngl

Version:
15 lines (14 loc) 350 B
/** * @file Dsn6 Parser * @author Alexander Rose <alexander.rose@weirdbyte.de> * @private */ import { Matrix4 } from 'three'; import VolumeParser from './volume-parser'; declare class Dsn6Parser extends VolumeParser { get type(): string; get isBinary(): boolean; _parse(): void; getMatrix(): Matrix4; } export default Dsn6Parser;