Skip to content

Commit

Permalink
Fix: simplify type
Browse files Browse the repository at this point in the history
  • Loading branch information
predict-woo committed Sep 23, 2023
1 parent df2c060 commit 411e842
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions src/types/event2023fall.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,7 @@ export type Transaction = {
}
| {
type: "use";
item: {
_id: string;
name: string;
imageUrl: string;
price: number;
description: string;
isDisabled: boolean;
stock: number;
itemType: number;
};
item: EventItem;
questId: never;
}
);
Expand Down

0 comments on commit 411e842

Please sign in to comment.