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
/
dist
/
constants
/
status.d.ts
10 lines
(9 loc)
•
184 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
declare
enum
StatusOptions
{
SUCCESS
=
"SUCCESS"
,
FAIL
=
"FAIL"
}
export
interface
ResponseStatus
<T> {
msg
:
StatusOptions
;
description
?:
string
;
data
?: T; }