Skip to content

Commit

Permalink
update types
Browse files Browse the repository at this point in the history
  • Loading branch information
mat-1 committed Apr 30, 2021
1 parent 9ff2170 commit 8afef71
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion build/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ export interface NBT {
[key: string]: string | number | any;
}
export interface Options {
pack: 'vanilla' | 'packshq' | 'furfsky';
pack: 'ectoplasn' | 'furfsky_reborn' | 'furfsky' | 'packshq' | 'rnbw' | 'vanilla' | string;
id: string;
damage?: number;
nbt: NBT;
}
/** Get the URL for the texture for a SkyBlock item */
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ interface Matcher {
}

export interface Options {
pack: 'vanilla' | 'packshq' | 'furfsky'
pack: 'ectoplasn' | 'furfsky_reborn' | 'furfsky' | 'packshq' | 'rnbw' | 'vanilla' | string
id: string
damage?: number
nbt: NBT
Expand Down

0 comments on commit 8afef71

Please sign in to comment.