Skip to content

Commit

Permalink
style: organise exports
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrechette committed Oct 3, 2020
1 parent 57c84bf commit d6b1a36
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion acl-js/acl.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,17 @@
// SOFTWARE.
////////////////////////////////////////////////////////////////////////////////

////////////////////////////////////////////////////////////////////////////////
// Core types

export { Quat } from './src-js/quat.js'
export { QVV } from './src-js/qvv.js'
export { Vec3 } from './src-js/vec3.js'

export { RoundingPolicy, isRoundingPolicy } from './src-js/rounding_policy.js'

////////////////////////////////////////////////////////////////////////////////
// Compression types

export { Sample } from './src-js/sample.js'
export { SampleType, isSampleType } from './src-js/sample_type.js'
export { Track } from './src-js/track.js'
Expand All @@ -35,5 +41,8 @@ export { TrackError } from './src-js/track_error.js'
export { ScalarTrackDescription, TransformTrackDescription } from './src-js/track_desc.js'
export { Encoder } from './src-js/encoder.js'

////////////////////////////////////////////////////////////////////////////////
// Decompression types

export { DecompressedTracks } from './src-js/decompressed_tracks.js'
export { Decoder } from './src-js/decoder.js'

0 comments on commit d6b1a36

Please sign in to comment.