mtas-tv-frontend/src/app/shared/result.enum.ts
Dávid Danyi b0cbd691d5 * Result.BUILDING added
* team editor is mostly done
* commit tracker works and is styled
* added new components for slide editor, still empty
* team resolver service
2018-04-09 18:41:53 +02:00

9 lines
171 B
TypeScript

export enum Result {
Aborted = 'ABORTED',
Building = 'BUILDING',
Failure = 'FAILURE',
NotBuilt = 'NOT_BUILT',
Success = 'SUCCESS',
Unstable = 'UNSTABLE',
}