change order of repository status

This commit is contained in:
tdurieux
2021-08-11 18:36:18 +02:00
parent 883f992edc
commit 290578967d
+6 -5
View File
@@ -16,7 +16,7 @@ export interface SourceBase {
url?: string; url?: string;
/** /**
* Retrieve the fie content * Retrieve the fie content
* @param file the file of the content to retrieve * @param file the file of the content to retrieve
*/ */
getFileContent(file: AnonymizedFile): Promise<stream.Readable>; getFileContent(file: AnonymizedFile): Promise<stream.Readable>;
@@ -66,12 +66,13 @@ export interface Branch {
} }
export type RepositoryStatus = export type RepositoryStatus =
| "ready" | "queue"
| "preparing" | "preparing"
| "expired"
| "removed"
| "download" | "download"
| "queue"; | "ready"
| "expired"
| "removed";
export type SourceStatus = "available" | "unavailable"; export type SourceStatus = "available" | "unavailable";
export interface Tree { export interface Tree {