sonolus-deemo-engine 1.0.1 → 1.0.2
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/dist/dc/index.d.cts +2 -2
- package/dist/ds/convert.cjs +1 -1
- package/dist/ds/index.d.cts +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +1 -1
- package/package.json +1 -1
package/dist/dc/index.d.cts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export type DC = DCObject[];
|
|
2
|
-
export type DCObject =
|
|
2
|
+
export type DCObject = DCBpmChangeObject | DCTapNote | DCSlideNote;
|
|
3
3
|
type BaseDCObject = {
|
|
4
4
|
beat: number;
|
|
5
5
|
};
|
|
6
|
-
export type
|
|
6
|
+
export type DCBpmChangeObject = BaseDCObject & {
|
|
7
7
|
type: 'bpm';
|
|
8
8
|
bpm: number;
|
|
9
9
|
};
|
package/dist/ds/convert.cjs
CHANGED
package/dist/ds/index.d.cts
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -22,7 +22,7 @@ __exportStar(require("./dc/index.cjs"), exports);
|
|
|
22
22
|
var convert_cjs_2 = require("./ds/convert.cjs");
|
|
23
23
|
Object.defineProperty(exports, "dsToDC", { enumerable: true, get: function () { return convert_cjs_2.dsToDC; } });
|
|
24
24
|
__exportStar(require("./ds/index.cjs"), exports);
|
|
25
|
-
exports.version = '1.0.
|
|
25
|
+
exports.version = '1.0.2';
|
|
26
26
|
exports.engineInfo = {
|
|
27
27
|
name: 'deemo',
|
|
28
28
|
version: 8,
|
package/dist/index.d.cts
CHANGED
|
@@ -3,7 +3,7 @@ export { dcToLevelData } from './dc/convert.cjs';
|
|
|
3
3
|
export * from './dc/index.cjs';
|
|
4
4
|
export { dsToDC } from './ds/convert.cjs';
|
|
5
5
|
export * from './ds/index.cjs';
|
|
6
|
-
export declare const version = "1.0.
|
|
6
|
+
export declare const version = "1.0.2";
|
|
7
7
|
export declare const engineInfo: {
|
|
8
8
|
readonly name: "deemo";
|
|
9
9
|
readonly version: 8;
|