@rian8337/osu-droid-replay-analyzer 1.0.2 → 1.0.3
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/package.json +2 -2
- package/typings/index.d.ts +20 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rian8337/osu-droid-replay-analyzer",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "A replay analyzer for analyzing osu!droid replay files.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"osu",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "1e285612ef6a4bed872ff289d663c6982badbf61"
|
|
49
49
|
}
|
package/typings/index.d.ts
CHANGED
|
@@ -205,6 +205,26 @@ declare module "@rian8337/osu-droid-replay-analyzer" {
|
|
|
205
205
|
});
|
|
206
206
|
}
|
|
207
207
|
|
|
208
|
+
/**
|
|
209
|
+
* Utility to check whether or not a beatmap is three-fingered.
|
|
210
|
+
*/
|
|
211
|
+
export class ThreeFingerChecker {
|
|
212
|
+
/**
|
|
213
|
+
* The beatmap to analyze.
|
|
214
|
+
*/
|
|
215
|
+
readonly map: DroidStarRating | RebalanceDroidStarRating;
|
|
216
|
+
/**
|
|
217
|
+
* The data of the replay.
|
|
218
|
+
*/
|
|
219
|
+
readonly data: ReplayData;
|
|
220
|
+
/**
|
|
221
|
+
* Checks whether a beatmap is eligible to be detected for three finger.
|
|
222
|
+
*
|
|
223
|
+
* @param map The beatmap.
|
|
224
|
+
*/
|
|
225
|
+
static isEligibleToDetect(map: DroidStarRating | RebalanceDroidStarRating): boolean;
|
|
226
|
+
}
|
|
227
|
+
|
|
208
228
|
//#endregion
|
|
209
229
|
|
|
210
230
|
//#region Enums
|