* team editor is mostly done * commit tracker works and is styled * added new components for slide editor, still empty * team resolver service
9 lines
171 B
TypeScript
9 lines
171 B
TypeScript
export enum Result {
|
|
Aborted = 'ABORTED',
|
|
Building = 'BUILDING',
|
|
Failure = 'FAILURE',
|
|
NotBuilt = 'NOT_BUILT',
|
|
Success = 'SUCCESS',
|
|
Unstable = 'UNSTABLE',
|
|
}
|