@antv/l7-renderer 2.9.21 → 2.9.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/index.js +5 -3
- package/es/regl/ReglAttribute.js +5 -8
- package/es/regl/ReglBuffer.js +9 -8
- package/es/regl/ReglElements.js +8 -8
- package/es/regl/ReglFramebuffer.js +8 -7
- package/es/regl/ReglModel.js +63 -42
- package/es/regl/ReglRenderbuffer.js +7 -7
- package/es/regl/ReglTexture2D.js +12 -10
- package/es/regl/constants.js +5 -2
- package/es/regl/index.js +43 -31
- package/lib/index.js +29 -13
- package/lib/regl/ReglAttribute.js +38 -48
- package/lib/regl/ReglBuffer.js +46 -52
- package/lib/regl/ReglElements.js +45 -51
- package/lib/regl/ReglFramebuffer.js +43 -58
- package/lib/regl/ReglModel.js +217 -283
- package/lib/regl/ReglRenderbuffer.js +42 -50
- package/lib/regl/ReglTexture2D.js +90 -122
- package/lib/regl/constants.js +168 -42
- package/lib/regl/index.js +204 -272
- package/package.json +11 -8
- package/es/index.js.map +0 -1
- package/es/regl/ReglAttribute.js.map +0 -1
- package/es/regl/ReglBuffer.js.map +0 -1
- package/es/regl/ReglElements.js.map +0 -1
- package/es/regl/ReglFramebuffer.js.map +0 -1
- package/es/regl/ReglModel.js.map +0 -1
- package/es/regl/ReglRenderbuffer.js.map +0 -1
- package/es/regl/ReglTexture2D.js.map +0 -1
- package/es/regl/constants.js.map +0 -1
- package/es/regl/index.js.map +0 -1
- package/lib/index.js.map +0 -1
- package/lib/regl/ReglAttribute.js.map +0 -1
- package/lib/regl/ReglBuffer.js.map +0 -1
- package/lib/regl/ReglElements.js.map +0 -1
- package/lib/regl/ReglFramebuffer.js.map +0 -1
- package/lib/regl/ReglModel.js.map +0 -1
- package/lib/regl/ReglRenderbuffer.js.map +0 -1
- package/lib/regl/ReglTexture2D.js.map +0 -1
- package/lib/regl/constants.js.map +0 -1
- package/lib/regl/index.js.map +0 -1
package/lib/index.js
CHANGED
|
@@ -1,16 +1,32 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod));
|
|
20
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
4
21
|
|
|
5
|
-
|
|
6
|
-
|
|
22
|
+
// src/index.ts
|
|
23
|
+
var src_exports = {};
|
|
24
|
+
__export(src_exports, {
|
|
25
|
+
ReglRendererService: () => import_regl.default
|
|
7
26
|
});
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
27
|
+
module.exports = __toCommonJS(src_exports);
|
|
28
|
+
var import_regl = __toESM(require("./regl"));
|
|
29
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
30
|
+
0 && (module.exports = {
|
|
31
|
+
ReglRendererService
|
|
13
32
|
});
|
|
14
|
-
|
|
15
|
-
var _regl = _interopRequireDefault(require("./regl"));
|
|
16
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,29 +1,30 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// src/regl/ReglAttribute.ts
|
|
20
|
+
var ReglAttribute_exports = {};
|
|
21
|
+
__export(ReglAttribute_exports, {
|
|
22
|
+
default: () => ReglAttribute
|
|
7
23
|
});
|
|
8
|
-
exports
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
13
|
-
|
|
14
|
-
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
15
|
-
|
|
16
|
-
var ReglAttribute = function () {
|
|
17
|
-
function ReglAttribute(gl, options) {
|
|
18
|
-
(0, _classCallCheck2.default)(this, ReglAttribute);
|
|
19
|
-
(0, _defineProperty2.default)(this, "attribute", void 0);
|
|
20
|
-
(0, _defineProperty2.default)(this, "buffer", void 0);
|
|
21
|
-
var buffer = options.buffer,
|
|
22
|
-
offset = options.offset,
|
|
23
|
-
stride = options.stride,
|
|
24
|
-
normalized = options.normalized,
|
|
25
|
-
size = options.size,
|
|
26
|
-
divisor = options.divisor;
|
|
24
|
+
module.exports = __toCommonJS(ReglAttribute_exports);
|
|
25
|
+
var ReglAttribute = class {
|
|
26
|
+
constructor(gl, options) {
|
|
27
|
+
const { buffer, offset, stride, normalized, size, divisor } = options;
|
|
27
28
|
this.buffer = buffer;
|
|
28
29
|
this.attribute = {
|
|
29
30
|
buffer: buffer.get(),
|
|
@@ -32,30 +33,19 @@ var ReglAttribute = function () {
|
|
|
32
33
|
normalized: normalized || false,
|
|
33
34
|
divisor: divisor || 0
|
|
34
35
|
};
|
|
35
|
-
|
|
36
36
|
if (size) {
|
|
37
37
|
this.attribute.size = size;
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
key: "destroy",
|
|
53
|
-
value: function destroy() {
|
|
54
|
-
this.buffer.destroy();
|
|
55
|
-
}
|
|
56
|
-
}]);
|
|
57
|
-
return ReglAttribute;
|
|
58
|
-
}();
|
|
59
|
-
|
|
60
|
-
exports.default = ReglAttribute;
|
|
61
|
-
//# sourceMappingURL=ReglAttribute.js.map
|
|
40
|
+
get() {
|
|
41
|
+
return this.attribute;
|
|
42
|
+
}
|
|
43
|
+
updateBuffer(options) {
|
|
44
|
+
this.buffer.subData(options);
|
|
45
|
+
}
|
|
46
|
+
destroy() {
|
|
47
|
+
this.buffer.destroy();
|
|
48
|
+
}
|
|
49
|
+
};
|
|
50
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
51
|
+
0 && (module.exports = {});
|
package/lib/regl/ReglBuffer.js
CHANGED
|
@@ -1,56 +1,50 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// src/regl/ReglBuffer.ts
|
|
20
|
+
var ReglBuffer_exports = {};
|
|
21
|
+
__export(ReglBuffer_exports, {
|
|
22
|
+
default: () => ReglBuffer
|
|
7
23
|
});
|
|
8
|
-
exports
|
|
9
|
-
|
|
10
|
-
var
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
15
|
-
|
|
16
|
-
var _l7Core = require("@antv/l7-core");
|
|
17
|
-
|
|
18
|
-
var _constants = require("./constants");
|
|
19
|
-
|
|
20
|
-
var ReglBuffer = function () {
|
|
21
|
-
function ReglBuffer(reGl, options) {
|
|
22
|
-
(0, _classCallCheck2.default)(this, ReglBuffer);
|
|
23
|
-
(0, _defineProperty2.default)(this, "buffer", void 0);
|
|
24
|
-
var data = options.data,
|
|
25
|
-
usage = options.usage,
|
|
26
|
-
type = options.type;
|
|
24
|
+
module.exports = __toCommonJS(ReglBuffer_exports);
|
|
25
|
+
var import_l7_core = require("@antv/l7-core");
|
|
26
|
+
var import_constants = require("./constants");
|
|
27
|
+
var ReglBuffer = class {
|
|
28
|
+
constructor(reGl, options) {
|
|
29
|
+
const { data, usage, type } = options;
|
|
27
30
|
this.buffer = reGl.buffer({
|
|
28
|
-
data
|
|
29
|
-
usage:
|
|
30
|
-
type:
|
|
31
|
+
data,
|
|
32
|
+
usage: import_constants.usageMap[usage || import_l7_core.gl.STATIC_DRAW],
|
|
33
|
+
type: import_constants.dataTypeMap[type || import_l7_core.gl.UNSIGNED_BYTE]
|
|
31
34
|
});
|
|
32
35
|
}
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
offset = _ref.offset;
|
|
49
|
-
this.buffer.subdata(data, offset);
|
|
50
|
-
}
|
|
51
|
-
}]);
|
|
52
|
-
return ReglBuffer;
|
|
53
|
-
}();
|
|
54
|
-
|
|
55
|
-
exports.default = ReglBuffer;
|
|
56
|
-
//# sourceMappingURL=ReglBuffer.js.map
|
|
36
|
+
get() {
|
|
37
|
+
return this.buffer;
|
|
38
|
+
}
|
|
39
|
+
destroy() {
|
|
40
|
+
this.buffer.destroy();
|
|
41
|
+
}
|
|
42
|
+
subData({
|
|
43
|
+
data,
|
|
44
|
+
offset
|
|
45
|
+
}) {
|
|
46
|
+
this.buffer.subdata(data, offset);
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
50
|
+
0 && (module.exports = {});
|
package/lib/regl/ReglElements.js
CHANGED
|
@@ -1,55 +1,49 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// src/regl/ReglElements.ts
|
|
20
|
+
var ReglElements_exports = {};
|
|
21
|
+
__export(ReglElements_exports, {
|
|
22
|
+
default: () => ReglElements
|
|
7
23
|
});
|
|
8
|
-
exports
|
|
9
|
-
|
|
10
|
-
var
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
15
|
-
|
|
16
|
-
var _l7Core = require("@antv/l7-core");
|
|
17
|
-
|
|
18
|
-
var _constants = require("./constants");
|
|
19
|
-
|
|
20
|
-
var ReglElements = function () {
|
|
21
|
-
function ReglElements(reGl, options) {
|
|
22
|
-
(0, _classCallCheck2.default)(this, ReglElements);
|
|
23
|
-
(0, _defineProperty2.default)(this, "elements", void 0);
|
|
24
|
-
var data = options.data,
|
|
25
|
-
usage = options.usage,
|
|
26
|
-
type = options.type,
|
|
27
|
-
count = options.count;
|
|
24
|
+
module.exports = __toCommonJS(ReglElements_exports);
|
|
25
|
+
var import_l7_core = require("@antv/l7-core");
|
|
26
|
+
var import_constants = require("./constants");
|
|
27
|
+
var ReglElements = class {
|
|
28
|
+
constructor(reGl, options) {
|
|
29
|
+
const { data, usage, type, count } = options;
|
|
28
30
|
this.elements = reGl.elements({
|
|
29
|
-
data
|
|
30
|
-
usage:
|
|
31
|
-
type:
|
|
32
|
-
count
|
|
31
|
+
data,
|
|
32
|
+
usage: import_constants.usageMap[usage || import_l7_core.gl.STATIC_DRAW],
|
|
33
|
+
type: import_constants.dataTypeMap[type || import_l7_core.gl.UNSIGNED_BYTE],
|
|
34
|
+
count
|
|
33
35
|
});
|
|
34
36
|
}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
key: "destroy",
|
|
49
|
-
value: function destroy() {}
|
|
50
|
-
}]);
|
|
51
|
-
return ReglElements;
|
|
52
|
-
}();
|
|
53
|
-
|
|
54
|
-
exports.default = ReglElements;
|
|
55
|
-
//# sourceMappingURL=ReglElements.js.map
|
|
37
|
+
get() {
|
|
38
|
+
return this.elements;
|
|
39
|
+
}
|
|
40
|
+
subData({
|
|
41
|
+
data
|
|
42
|
+
}) {
|
|
43
|
+
this.elements.subdata(data);
|
|
44
|
+
}
|
|
45
|
+
destroy() {
|
|
46
|
+
}
|
|
47
|
+
};
|
|
48
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
49
|
+
0 && (module.exports = {});
|
|
@@ -1,66 +1,51 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// src/regl/ReglFramebuffer.ts
|
|
20
|
+
var ReglFramebuffer_exports = {};
|
|
21
|
+
__export(ReglFramebuffer_exports, {
|
|
22
|
+
default: () => ReglFramebuffer
|
|
7
23
|
});
|
|
8
|
-
exports
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
var ReglFramebuffer = function () {
|
|
17
|
-
function ReglFramebuffer(reGl, options) {
|
|
18
|
-
(0, _classCallCheck2.default)(this, ReglFramebuffer);
|
|
19
|
-
(0, _defineProperty2.default)(this, "framebuffer", void 0);
|
|
20
|
-
var width = options.width,
|
|
21
|
-
height = options.height,
|
|
22
|
-
color = options.color,
|
|
23
|
-
colors = options.colors,
|
|
24
|
-
depth = options.depth,
|
|
25
|
-
stencil = options.stencil;
|
|
26
|
-
var framebufferOptions = {
|
|
27
|
-
width: width,
|
|
28
|
-
height: height
|
|
24
|
+
module.exports = __toCommonJS(ReglFramebuffer_exports);
|
|
25
|
+
var ReglFramebuffer = class {
|
|
26
|
+
constructor(reGl, options) {
|
|
27
|
+
const { width, height, color, colors, depth, stencil } = options;
|
|
28
|
+
const framebufferOptions = {
|
|
29
|
+
width,
|
|
30
|
+
height
|
|
29
31
|
};
|
|
30
|
-
|
|
31
32
|
if (Array.isArray(colors)) {
|
|
32
|
-
framebufferOptions.colors = colors.map(
|
|
33
|
-
return c.get();
|
|
34
|
-
});
|
|
33
|
+
framebufferOptions.colors = colors.map((c) => c.get());
|
|
35
34
|
}
|
|
36
|
-
|
|
37
|
-
if (color && typeof color !== 'boolean') {
|
|
35
|
+
if (color && typeof color !== "boolean") {
|
|
38
36
|
framebufferOptions.color = color.get();
|
|
39
37
|
}
|
|
40
|
-
|
|
41
38
|
this.framebuffer = reGl.framebuffer(framebufferOptions);
|
|
42
39
|
}
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
key: "resize",
|
|
56
|
-
value: function resize(_ref) {
|
|
57
|
-
var width = _ref.width,
|
|
58
|
-
height = _ref.height;
|
|
59
|
-
this.framebuffer.resize(width, height);
|
|
60
|
-
}
|
|
61
|
-
}]);
|
|
62
|
-
return ReglFramebuffer;
|
|
63
|
-
}();
|
|
64
|
-
|
|
65
|
-
exports.default = ReglFramebuffer;
|
|
66
|
-
//# sourceMappingURL=ReglFramebuffer.js.map
|
|
40
|
+
get() {
|
|
41
|
+
return this.framebuffer;
|
|
42
|
+
}
|
|
43
|
+
destroy() {
|
|
44
|
+
this.framebuffer.destroy();
|
|
45
|
+
}
|
|
46
|
+
resize({ width, height }) {
|
|
47
|
+
this.framebuffer.resize(width, height);
|
|
48
|
+
}
|
|
49
|
+
};
|
|
50
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
51
|
+
0 && (module.exports = {});
|