gcm-database 0.0.4 → 0.0.5
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/maimai/chart.d.ts +8 -0
- package/dist/maimai/chart.js +6 -0
- package/dist/maimai/chart.js.map +1 -1
- package/dist/maimai.d.ts +1 -1
- package/dist/maimai.js +3 -1
- package/dist/maimai.js.map +1 -1
- package/package.json +1 -1
package/dist/maimai/chart.d.ts
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
import type { BaseChart } from "../base/chart";
|
|
2
2
|
import type { Difficulty } from "./difficulty";
|
|
3
|
+
export declare enum Type {
|
|
4
|
+
STANDARD = "standard",
|
|
5
|
+
DELUXE = "deluxe"
|
|
6
|
+
}
|
|
3
7
|
export interface Chart extends BaseChart {
|
|
8
|
+
/**
|
|
9
|
+
* Type of this chart.
|
|
10
|
+
*/
|
|
11
|
+
type: Type;
|
|
4
12
|
difficulty: Difficulty;
|
|
5
13
|
}
|
package/dist/maimai/chart.js
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Type = void 0;
|
|
4
|
+
var Type;
|
|
5
|
+
(function (Type) {
|
|
6
|
+
Type["STANDARD"] = "standard";
|
|
7
|
+
Type["DELUXE"] = "deluxe";
|
|
8
|
+
})(Type || (exports.Type = Type = {}));
|
|
3
9
|
//# sourceMappingURL=chart.js.map
|
package/dist/maimai/chart.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chart.js","sourceRoot":"","sources":["../../src/maimai/chart.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"chart.js","sourceRoot":"","sources":["../../src/maimai/chart.ts"],"names":[],"mappings":";;;AAGA,IAAY,IAGX;AAHD,WAAY,IAAI;IACZ,6BAAqB,CAAA;IACrB,yBAAiB,CAAA;AACrB,CAAC,EAHW,IAAI,oBAAJ,IAAI,QAGf"}
|
package/dist/maimai.d.ts
CHANGED
package/dist/maimai.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Difficulty = void 0;
|
|
3
|
+
exports.Difficulty = exports.Type = void 0;
|
|
4
|
+
var chart_1 = require("./maimai/chart");
|
|
5
|
+
Object.defineProperty(exports, "Type", { enumerable: true, get: function () { return chart_1.Type; } });
|
|
4
6
|
var difficulty_1 = require("./maimai/difficulty");
|
|
5
7
|
Object.defineProperty(exports, "Difficulty", { enumerable: true, get: function () { return difficulty_1.Difficulty; } });
|
|
6
8
|
//# sourceMappingURL=maimai.js.map
|
package/dist/maimai.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"maimai.js","sourceRoot":"","sources":["../src/maimai.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"maimai.js","sourceRoot":"","sources":["../src/maimai.ts"],"names":[],"mappings":";;;AAAA,uCAA4C;AAA5B,6FAAA,IAAI,OAAA;AAEpB,iDAAgD;AAAvC,wGAAA,UAAU,OAAA"}
|