Skip to content

Commit

Permalink
Fix TypeScript
Browse files Browse the repository at this point in the history
  • Loading branch information
dumbmatter committed May 25, 2024
1 parent 8305396 commit d59321a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/common/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1224,41 +1224,41 @@ export type PlayerWithoutKey<PlayerRatings = any> = {
transactions?: (
| {
season: number;
phase: number;
phase: Phase;
tid: number;
type: "draft";
pickNum: number;
}
| {
season: number;
phase: number;
phase: Phase;
tid: number;
type: "freeAgent";
eid?: number;
}
| {
season: number;
phase: number;
phase: Phase;
tid: number;
type: "trade";
fromTid: number;
eid?: number;
}
| {
season: number;
phase: number;
phase: Phase;
tid: number;
type: "godMode";
}
| {
season: number;
phase: number;
phase: Phase;
tid: number;
type: "import";
}
| {
season: number;
phase: number;
phase: Phase;
tid: number;
type: "sisyphus";
fromTid: number;
Expand Down

0 comments on commit d59321a

Please sign in to comment.