@@ -833,6 +833,14 @@ exports[`should build \`ts-rolldown\` package > ./dist/index.cjs 1`] = `
833833""use strict";
834834Object.defineProperty(exports, "__esModule", { value : ! 0 } );
835835const VERSION = "0.0.0-development";
836+ var Direction = /* @__PURE__ */ ((Direction2) => (Direction2[Direction2.Up = 0] = "Up", Direction2[Direction2.Down = 1] = "Down", Direction2[Direction2.Left = 2] = "Left", Direction2[Direction2.Right = 3] = "Right", Direction2))(Direction || { } );
837+ class Point {
838+ constructor (x , y , z , perspective ) {
839+ this.x = x , this.y = y , this.z = z , this.perspective = perspective;
840+ }
841+ }
842+ exports.Direction = Direction;
843+ exports.Point = Point;
836844exports.VERSION = VERSION;
837845//# sourceMappingURL=index.cjs.map
838846"
@@ -841,18 +849,56 @@ exports.VERSION = VERSION;
841849exports [` should build \` ts-rolldown\` package > ./dist/index.d.cts 1` ] = `
842850"/** @public */
843851declare const VERSION: string;
844- export { VERSION } ;"
852+ /** @public */
853+ declare enum Direction {
854+ Up = 0 ,
855+ Down = 1 ,
856+ Left = 2 ,
857+ Right = 3 ,
858+ }
859+ /** @public */
860+ declare class Point {
861+ x : number ;
862+ y : number ;
863+ protected z : number ;
864+ private perspective ;
865+ constructor (x : number , y : number , z : number , perspective : number );
866+ }
867+ export { Direction , Point , VERSION } ;"
845868` ;
846869
847870exports [` should build \` ts-rolldown\` package > ./dist/index.d.ts 1` ] = `
848871"/** @public */
849872declare const VERSION: string;
850- export { VERSION } ;"
873+ /** @public */
874+ declare enum Direction {
875+ Up = 0 ,
876+ Down = 1 ,
877+ Left = 2 ,
878+ Right = 3 ,
879+ }
880+ /** @public */
881+ declare class Point {
882+ x : number ;
883+ y : number ;
884+ protected z : number ;
885+ private perspective ;
886+ constructor (x : number , y : number , z : number , perspective : number );
887+ }
888+ export { Direction , Point , VERSION } ;"
851889` ;
852890
853891exports [` should build \` ts-rolldown\` package > ./dist/index.js 1` ] = `
854892"const VERSION = "0.0.0-development";
893+ var Direction = /* @__PURE__ */ ((Direction2) => (Direction2[Direction2.Up = 0] = "Up", Direction2[Direction2.Down = 1] = "Down", Direction2[Direction2.Left = 2] = "Left", Direction2[Direction2.Right = 3] = "Right", Direction2))(Direction || { } );
894+ class Point {
895+ constructor (x , y , z , perspective ) {
896+ this.x = x , this.y = y , this.z = z , this.perspective = perspective;
897+ }
898+ }
855899export {
900+ Direction ,
901+ Point ,
856902 VERSION
857903} ;
858904//# sourceMappingURL=index.js.map
0 commit comments