Skip to content

Commit

Permalink
Merge pull request #10 from MiguelHigueraDev/fix/PartySize
Browse files Browse the repository at this point in the history
fix: update PartySize to a tuple of numbers
  • Loading branch information
barbarbar338 authored Aug 22, 2024
2 parents 01e47e9 + 488725f commit ed671fc
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,7 @@ export interface Activity {

export interface Party {
id: string;
size?: PartySize;
}

export interface PartySize {
current_size: number;
max_size: number;
size?: [number, number];
}

export interface Assets {
Expand Down

0 comments on commit ed671fc

Please sign in to comment.