Skip to content

Commit

Permalink
core: frontend: types: version-chooser: Fix code style
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick José Pereira <[email protected]>
  • Loading branch information
patrickelectric committed Apr 27, 2023
1 parent 808af23 commit 5d06d63
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions core/frontend/src/types/version-chooser.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
export interface Version {
repository: string,
tag: string,
last_modified: string,
sha: (string | null)
}
repository: string,
tag: string,
last_modified: string,
sha: (string | null),
}

export interface VersionsQuery {
local: Version[],
remote: Version[],
error: (string | null)
}
local: Version[],
remote: Version[],
error: (string | null),
}

export enum VersionType {
Custom = 'custom',
Master = 'master',
Beta = 'beta',
Stable = 'stable',
}
Custom = 'custom',
Master = 'master',
Beta = 'beta',
Stable = 'stable',
}

0 comments on commit 5d06d63

Please sign in to comment.