Skip to content

Commit

Permalink
Split Track type
Browse files Browse the repository at this point in the history
  • Loading branch information
DerGoogler committed Jul 2, 2024
1 parent 6fa8546 commit 32a4219
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Website/src/typings/global.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ declare global {

minApi?: number;
maxApi?: number;

license?: string;
homepage?: string;
support?: string;
Expand All @@ -197,10 +197,13 @@ declare global {
__mmrl__local__module__?: boolean;
}

export interface Track {
export interface BaseTrack {
type: string;
added: number;
source: string;
}

export interface Track extends BaseTrack {
verified: boolean;
antifeatures?: string | string[];

Expand Down

0 comments on commit 32a4219

Please sign in to comment.