├── .gitignore ├── .tidyrc.json ├── LICENSE ├── README.md ├── bin └── print-module-types.js ├── flake.lock ├── flake.nix ├── package.json ├── packages.dhall ├── spago.dhall ├── src ├── Bin │ └── PrintModuleTypes.purs ├── Effect │ └── Uncurried │ │ ├── Methods.js │ │ ├── Methods.purs │ │ └── Metohds.js ├── ReadDTS.purs ├── ReadDTS │ ├── AST.purs │ ├── AST │ │ └── Printer.purs │ ├── Specialization.purs │ ├── Specialization │ │ └── Pretty.purs │ ├── TypeScript.js │ ├── TypeScript.purs │ └── TypeScript.ts ├── TS │ └── Codegen │ │ ├── PS.purs │ │ └── PS │ │ ├── ModulePath.purs │ │ └── Types.purs └── TypeScript │ ├── Class │ └── Compiler │ │ └── Program.purs │ ├── Compiler │ ├── Checker.js │ ├── Checker.purs │ ├── Checker.ts │ ├── Checker │ │ ├── Internal.js │ │ ├── Internal.purs │ │ └── Internal.ts │ ├── Debug.js │ ├── Debug.purs │ ├── Debug.ts │ ├── Factory │ │ ├── NodeTests.js │ │ ├── NodeTests.purs │ │ └── NodeTests.ts │ ├── Parser.js │ ├── Parser.purs │ ├── Parser.ts │ ├── Program.js │ ├── Program.purs │ ├── Program.ts │ ├── Types.js │ ├── Types.purs │ ├── Types.ts │ ├── Types │ │ ├── Diagnostics.js │ │ ├── Diagnostics.purs │ │ ├── Nodes.js │ │ ├── Nodes.purs │ │ ├── Nodes.ts │ │ ├── Signature.js │ │ ├── Signature.purs │ │ ├── Signature.ts │ │ ├── Symbol.js │ │ ├── Symbol.purs │ │ ├── Symbol.ts │ │ ├── Typs.js │ │ ├── Typs.purs │ │ ├── Typs.ts │ │ └── Typs │ │ │ ├── Internal.js │ │ │ ├── Internal.purs │ │ │ └── Internal.ts │ ├── UtilitiesPublic.js │ ├── UtilitiesPublic.purs │ └── UtilitiesPublic.ts │ └── Testing │ ├── BoundedCompilerHost.js │ ├── BoundedCompilerHost.purs │ ├── BoundedCompilerHost.ts │ ├── DefaultLib.purs │ ├── InMemory.purs │ ├── InSubdir.purs │ └── Types.purs └── test ├── Codegen.purs ├── Compile.purs ├── Golden ├── ThreeJs.purs └── ts │ └── three │ ├── cameras │ └── Camera.d.ts │ ├── constants.d.ts │ ├── core │ ├── BufferAttribute.d.ts │ ├── BufferGeometry.d.ts │ ├── EventDispatcher.d.ts │ ├── InterleavedBuffer.d.ts │ ├── InterleavedBufferAttribute.d.ts │ └── Object3D.d.ts │ ├── math │ ├── Box2.d.ts │ ├── Box3.d.ts │ ├── Color.d.ts │ ├── Cylindrical.d.ts │ ├── Euler.d.ts │ ├── Frustum.d.ts │ ├── Interpolant.d.ts │ ├── Line3.d.ts │ ├── MathUtils.d.ts │ ├── Matrix3.d.ts │ ├── Matrix4.d.ts │ ├── Plane.d.ts │ ├── Quaternion.d.ts │ ├── Ray.d.ts │ ├── Sphere.d.ts │ ├── Spherical.d.ts │ ├── SphericalHarmonics3.d.ts │ ├── Triangle.d.ts │ ├── Vector2.d.ts │ ├── Vector3.d.ts │ ├── Vector4.d.ts │ └── interpolants │ │ ├── CubicInterpolant.d.ts │ │ ├── DiscreteInterpolant.d.ts │ │ ├── LinearInterpolant.d.ts │ │ └── QuaternionLinearInterpolant.d.ts │ ├── objects │ └── Sprite.d.ts │ └── utils.d.ts ├── Main.purs ├── MultiModule.purs ├── NonRecType.purs └── RecType.purs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/.gitignore -------------------------------------------------------------------------------- /.tidyrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/.tidyrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/README.md -------------------------------------------------------------------------------- /bin/print-module-types.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | import { main } from '../output/Bin.PrintModuleTypes/index.js'; 4 | 5 | main(); 6 | -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/flake.nix -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/package.json -------------------------------------------------------------------------------- /packages.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/packages.dhall -------------------------------------------------------------------------------- /spago.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/spago.dhall -------------------------------------------------------------------------------- /src/Bin/PrintModuleTypes.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/Bin/PrintModuleTypes.purs -------------------------------------------------------------------------------- /src/Effect/Uncurried/Methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/Effect/Uncurried/Methods.js -------------------------------------------------------------------------------- /src/Effect/Uncurried/Methods.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/Effect/Uncurried/Methods.purs -------------------------------------------------------------------------------- /src/Effect/Uncurried/Metohds.js: -------------------------------------------------------------------------------- 1 | exports. 2 | -------------------------------------------------------------------------------- /src/ReadDTS.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/ReadDTS.purs -------------------------------------------------------------------------------- /src/ReadDTS/AST.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/ReadDTS/AST.purs -------------------------------------------------------------------------------- /src/ReadDTS/AST/Printer.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/ReadDTS/AST/Printer.purs -------------------------------------------------------------------------------- /src/ReadDTS/Specialization.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/ReadDTS/Specialization.purs -------------------------------------------------------------------------------- /src/ReadDTS/Specialization/Pretty.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/ReadDTS/Specialization/Pretty.purs -------------------------------------------------------------------------------- /src/ReadDTS/TypeScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/ReadDTS/TypeScript.js -------------------------------------------------------------------------------- /src/ReadDTS/TypeScript.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/ReadDTS/TypeScript.purs -------------------------------------------------------------------------------- /src/ReadDTS/TypeScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/ReadDTS/TypeScript.ts -------------------------------------------------------------------------------- /src/TS/Codegen/PS.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TS/Codegen/PS.purs -------------------------------------------------------------------------------- /src/TS/Codegen/PS/ModulePath.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TS/Codegen/PS/ModulePath.purs -------------------------------------------------------------------------------- /src/TS/Codegen/PS/Types.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TS/Codegen/PS/Types.purs -------------------------------------------------------------------------------- /src/TypeScript/Class/Compiler/Program.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Class/Compiler/Program.purs -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Checker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Checker.js -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Checker.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Checker.purs -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Checker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Checker.ts -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Checker/Internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Checker/Internal.js -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Checker/Internal.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Checker/Internal.purs -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Checker/Internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Checker/Internal.ts -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Debug.js -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Debug.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Debug.purs -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Debug.ts -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Factory/NodeTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Factory/NodeTests.js -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Factory/NodeTests.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Factory/NodeTests.purs -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Factory/NodeTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Factory/NodeTests.ts -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Parser.js -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Parser.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Parser.purs -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Parser.ts -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Program.js -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Program.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Program.purs -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Program.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Program.ts -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Types.js -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Types.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Types.purs -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Types.ts -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Types/Diagnostics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Types/Diagnostics.js -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Types/Diagnostics.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Types/Diagnostics.purs -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Types/Nodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Types/Nodes.js -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Types/Nodes.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Types/Nodes.purs -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Types/Nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Types/Nodes.ts -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Types/Signature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Types/Signature.js -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Types/Signature.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Types/Signature.purs -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Types/Signature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Types/Signature.ts -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Types/Symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Types/Symbol.js -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Types/Symbol.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Types/Symbol.purs -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Types/Symbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Types/Symbol.ts -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Types/Typs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Types/Typs.js -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Types/Typs.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Types/Typs.purs -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Types/Typs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Types/Typs.ts -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Types/Typs/Internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Types/Typs/Internal.js -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Types/Typs/Internal.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Types/Typs/Internal.purs -------------------------------------------------------------------------------- /src/TypeScript/Compiler/Types/Typs/Internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/Types/Typs/Internal.ts -------------------------------------------------------------------------------- /src/TypeScript/Compiler/UtilitiesPublic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/UtilitiesPublic.js -------------------------------------------------------------------------------- /src/TypeScript/Compiler/UtilitiesPublic.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/UtilitiesPublic.purs -------------------------------------------------------------------------------- /src/TypeScript/Compiler/UtilitiesPublic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Compiler/UtilitiesPublic.ts -------------------------------------------------------------------------------- /src/TypeScript/Testing/BoundedCompilerHost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Testing/BoundedCompilerHost.js -------------------------------------------------------------------------------- /src/TypeScript/Testing/BoundedCompilerHost.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Testing/BoundedCompilerHost.purs -------------------------------------------------------------------------------- /src/TypeScript/Testing/BoundedCompilerHost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Testing/BoundedCompilerHost.ts -------------------------------------------------------------------------------- /src/TypeScript/Testing/DefaultLib.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Testing/DefaultLib.purs -------------------------------------------------------------------------------- /src/TypeScript/Testing/InMemory.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Testing/InMemory.purs -------------------------------------------------------------------------------- /src/TypeScript/Testing/InSubdir.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Testing/InSubdir.purs -------------------------------------------------------------------------------- /src/TypeScript/Testing/Types.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/src/TypeScript/Testing/Types.purs -------------------------------------------------------------------------------- /test/Codegen.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Codegen.purs -------------------------------------------------------------------------------- /test/Compile.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Compile.purs -------------------------------------------------------------------------------- /test/Golden/ThreeJs.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ThreeJs.purs -------------------------------------------------------------------------------- /test/Golden/ts/three/cameras/Camera.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/cameras/Camera.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/constants.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/core/BufferAttribute.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/core/BufferAttribute.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/core/BufferGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/core/BufferGeometry.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/core/EventDispatcher.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/core/EventDispatcher.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/core/InterleavedBuffer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/core/InterleavedBuffer.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/core/InterleavedBufferAttribute.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/core/InterleavedBufferAttribute.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/core/Object3D.d.ts: -------------------------------------------------------------------------------- 1 | export class Object3D { 2 | constructor(); 3 | } 4 | -------------------------------------------------------------------------------- /test/Golden/ts/three/math/Box2.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/Box2.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/Box3.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/Box3.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/Color.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/Color.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/Cylindrical.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/Cylindrical.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/Euler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/Euler.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/Frustum.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/Frustum.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/Interpolant.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/Interpolant.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/Line3.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/Line3.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/MathUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/MathUtils.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/Matrix3.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/Matrix3.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/Matrix4.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/Matrix4.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/Plane.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/Plane.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/Quaternion.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/Quaternion.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/Ray.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/Ray.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/Sphere.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/Sphere.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/Spherical.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/Spherical.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/SphericalHarmonics3.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/SphericalHarmonics3.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/Triangle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/Triangle.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/Vector2.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/Vector2.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/Vector3.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/Vector3.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/Vector4.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/Vector4.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/interpolants/CubicInterpolant.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/interpolants/CubicInterpolant.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/interpolants/DiscreteInterpolant.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/interpolants/DiscreteInterpolant.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/interpolants/LinearInterpolant.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/interpolants/LinearInterpolant.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/math/interpolants/QuaternionLinearInterpolant.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/math/interpolants/QuaternionLinearInterpolant.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/objects/Sprite.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/objects/Sprite.d.ts -------------------------------------------------------------------------------- /test/Golden/ts/three/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Golden/ts/three/utils.d.ts -------------------------------------------------------------------------------- /test/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/Main.purs -------------------------------------------------------------------------------- /test/MultiModule.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/MultiModule.purs -------------------------------------------------------------------------------- /test/NonRecType.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/NonRecType.purs -------------------------------------------------------------------------------- /test/RecType.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-codegen/purescript-read-dts/HEAD/test/RecType.purs --------------------------------------------------------------------------------