UNPKG
eust-conciliation
Version:
latest (1.0.0)
1.0.0
github.com/ADD01-TECH/api-01eust
ADD01-TECH/api-01eust
eust-conciliation
/
src
/
application
/
contracts
/
debit-notice-client.ts
8 lines
(5 loc)
•
237 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
/* eslint-disable no-unused-vars */
import
{
DebitNotice
}
from
'../../domain/debit-notice'
;
export
interface
IDebitNoticeClient
{
getDebitNotice
(
year
:
number
,
month
:
number
,
page
:
number
,
perPage
:
number
):
Promise
<
DebitNotice
[]>; }