@cuemath/leap 3.0.10-hg2 → 3.0.10-hg3
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.d.ts +6 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -2925,6 +2925,11 @@ declare interface ITableInfo_2 {
|
|
2925
2925
|
stars: ('advance' | 'random' | 'sequence')[];
|
2926
2926
|
}
|
2927
2927
|
|
2928
|
+
declare interface ITableModeState {
|
2929
|
+
tableNumber: number;
|
2930
|
+
rewardStar?: TTableMode[];
|
2931
|
+
}
|
2932
|
+
|
2928
2933
|
export declare interface ITables {
|
2929
2934
|
type: ProjectType;
|
2930
2935
|
label: string;
|
@@ -2937,10 +2942,7 @@ declare interface ITables_2 {
|
|
2937
2942
|
}
|
2938
2943
|
|
2939
2944
|
export declare interface ITablesData extends ITables {
|
2940
|
-
openModesOfTable?:
|
2941
|
-
tableNumber: number;
|
2942
|
-
rewardStars?: TTableMode[];
|
2943
|
-
};
|
2945
|
+
openModesOfTable?: ITableModeState;
|
2944
2946
|
}
|
2945
2947
|
|
2946
2948
|
export declare interface ITableWebGameProps extends IBaseWebGameProps {
|