9 lines
136 B
TypeScript
9 lines
136 B
TypeScript
export enum StatusDocument {
|
|
"rejected" = -3,
|
|
"draft" = -1,
|
|
"submitted" = 0,
|
|
"approval" = 1,
|
|
"disposition" = 2,
|
|
};
|
|
|