UNPKG
@sologence/nestjs-redshift-migration
Version:
latest (2.0.0)
2.0.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
NestJS migration module for Redshift data migration
@sologence/nestjs-redshift-migration
/
lib
/
constants
/
status.ts
11 lines
(9 loc)
•
188 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
enum
StatusOptions
{
SUCCESS
=
'SUCCESS'
,
FAIL
=
'FAIL'
, }
export
interface
ResponseStatus
<T> {
msg
:
StatusOptions
;
description
?:
string
;
data
?: T; }