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
/
agent-client.ts
15 lines
(10 loc)
•
278 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* eslint-disable no-unused-vars */
import
{
Agent
}
from
'../../domain/agent'
;
export
interface
IAgentClientFilter
{
cnpj
?:
string
;
code
?:
string
;
type
:
'user'
|
'transmitter'
; }
export
interface
IAgentClient
{
find
(
filter
:
IAgentClientFilter
):
Promise
<
Agent
[]>; }