-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
main: namespace conflicting exports exports
- Loading branch information
1 parent
0defc0c
commit 0aeeca9
Showing
1 changed file
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |