UNPKG
eust-conciliation
Version:
latest (1.0.0)
1.0.0
github.com/ADD01-TECH/api-01eust
ADD01-TECH/api-01eust
eust-conciliation
/
src
/
domain
/
debit-installment.ts
20 lines
(11 loc)
•
209 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
export
type
DebitInstallment
= {
id
:
string
,
debitId
:
string
,
index
:
number
,
dueDate
:
Date
,
value
:
number
,
createdBy
?:
string
,
updatedBy
?:
string
,
createdAt
:
Date
,
updatedAt
:
Date
, }