Skip to content

Commit

Permalink
main: namespace conflicting exports exports
Browse files Browse the repository at this point in the history
  • Loading branch information
thewhodidthis committed Feb 8, 2024
1 parent 0defc0c commit 0aeeca9
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions main.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
export * from "./camera.js"
export * from "./canvas.js"
export * from "./cone.js"
export * from "./csg.js"
export * from "./cube.js"
export * from "./cylinder.js"
export * as cone from "./cone.js"
export * as csg from "./csg.js"
export * as cube from "./cube.js"
export * as cylinder from "./cylinder.js"
export * from "./group.js"
export * from "./intersection.js"
export * from "./light.js"
export * from "./material.js"
export * from "./matrix.js"
export * as m from "./matrix.js"
export * from "./parser.js"
export * from "./pattern.js"
export * from "./ray.js"
export * from "./shape.js"
export * from "./sphere.js"
export * as sphere from "./sphere.js"
export * from "./transform.js"
export * from "./triangle.js"
export * from "./tuple.js"
export * from "./world.js"
export * as triangle from "./triangle.js"
export * as t from "./tuple.js"
export * as world from "./world.js"

0 comments on commit 0aeeca9

Please sign in to comment.