UNPKG
@grubou/bussy
Version:
latest (1.0.0)
1.0.0
0.1.3
0.1.2
0.1.1
0.0.1
Command & query bus implementations
github.com/franck-romano/bussy
franck-romano/bussy
@grubou/bussy
/
src
/
queryBus
/
types
/
QueryHandler.ts
8 lines
(5 loc)
•
165 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{
Query
}
from
'./Query'
;
export
interface
QueryHandler
<RESULT, QUERY
extends
Query
<RESULT>> {
name
():
string
;
handle
(
query
:
QUERY
):
Promise
<
RESULT
>; }