Skip to content

Commit

Permalink
fix some interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
3vorp committed Oct 24, 2023
1 parent 2b4d00e commit eb24a31
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/interfaces/firestorm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,19 @@ export interface Path {
export interface Use {
id: string;
name: string;
edition: "java" | "bedrock" | "dungeons";
edition: "java" | "bedrock";
}

// when you don't add the "all" flag when searching on the API
export interface BaseTexture {
id: string;
name: string;
tags: string[];
}

export interface Texture extends BaseTexture {
uses?: Use[];
paths?: Path[];
uses: Use[];
paths: Path[];
contributions?: Contribution[];
}

Expand Down

0 comments on commit eb24a31

Please sign in to comment.