UNPKG
@addapptables/microservice
Version:
latest (2.0.1)
2.0.1
2.0.0
1.1.0
1.0.0
1.0.0-0
0.0.3-0
0.0.2-0
0.0.1
0.0.1-0
addapptables microservice
github.com/addapptables/miscellaneous
addapptables/miscellaneous
@addapptables/microservice
/
src
/
interfaces
/
queries
/
query.interface.ts
10 lines
(8 loc)
•
248 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
IQueryDto
}
from
'./query-dto-interface'
;
import
{
ITransferData
}
from
'../transfer-data'
;
export
interface
IQuery
<T
extends
IQueryDto
>
extends
ITransferData
<T> {
context
:
string
;
action
:
string
;
data
: T;
cid
?:
string
; }