@winible/winible-typed 2.27.3 → 2.28.0
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 +1 -1
- package/typed-model/bet.ts +1 -1
package/package.json
CHANGED
package/typed-model/bet.ts
CHANGED
@@ -10,7 +10,7 @@ import sequelize from "./pb-sequelize";
|
|
10
10
|
import User from "./user";
|
11
11
|
import Post from "./post";
|
12
12
|
|
13
|
-
type BetType = "same-game" | "parlay" | "single";
|
13
|
+
type BetType = "same-game parlay" | "parlay" | "single";
|
14
14
|
|
15
15
|
type ResultType = "pending" | "won" | "lost" | "push";
|
16
16
|
|