* adding typeorm to api * switching to sqlite * switching to sqlite * switching to sqlite * migrating to sqlite * updating terraform * updating infrastructure
7 lines
94 B
TypeScript
7 lines
94 B
TypeScript
export enum FormMode {
|
|
ADD = 'ADD',
|
|
EDIT = 'EDIT',
|
|
VIEW = 'VIEW',
|
|
CANCEL = 'CANCEL'
|
|
}
|