@konoui/mjimage 0.0.60 → 0.0.61
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/index.cjs +11 -11
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +494 -476
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -217,6 +217,7 @@ export declare interface BoardContext {
|
|
|
217
217
|
finalDiscardWin?: boolean;
|
|
218
218
|
oneShotWin?: boolean;
|
|
219
219
|
roundUp8000?: boolean;
|
|
220
|
+
disableCountable32000?: boolean;
|
|
220
221
|
}
|
|
221
222
|
|
|
222
223
|
declare type BoardRound = (typeof ROUND_MAP)[keyof typeof ROUND_MAP];
|
|
@@ -618,6 +619,7 @@ export declare class DoubleCalculator {
|
|
|
618
619
|
finalDiscardWin: boolean;
|
|
619
620
|
oneShotWin: boolean;
|
|
620
621
|
roundUp8000: boolean;
|
|
622
|
+
disableCountable32000: boolean;
|
|
621
623
|
orig: BoardContext;
|
|
622
624
|
};
|
|
623
625
|
constructor(hand: Hand, params: BoardContext);
|
package/dist/index.d.ts
CHANGED
|
@@ -217,6 +217,7 @@ export declare interface BoardContext {
|
|
|
217
217
|
finalDiscardWin?: boolean;
|
|
218
218
|
oneShotWin?: boolean;
|
|
219
219
|
roundUp8000?: boolean;
|
|
220
|
+
disableCountable32000?: boolean;
|
|
220
221
|
}
|
|
221
222
|
|
|
222
223
|
declare type BoardRound = (typeof ROUND_MAP)[keyof typeof ROUND_MAP];
|
|
@@ -618,6 +619,7 @@ export declare class DoubleCalculator {
|
|
|
618
619
|
finalDiscardWin: boolean;
|
|
619
620
|
oneShotWin: boolean;
|
|
620
621
|
roundUp8000: boolean;
|
|
622
|
+
disableCountable32000: boolean;
|
|
621
623
|
orig: BoardContext;
|
|
622
624
|
};
|
|
623
625
|
constructor(hand: Hand, params: BoardContext);
|