UNPKG
@chassisjs/hermes-mongodb
Version:
latest (1.0.0-alpha.16)
1.0.0-alpha.16
1.0.0-alpha.15
1.0.0-alpha.14
1.0.0-alpha.13
1.0.0-alpha.12
Production-Ready TypeScript Outbox Pattern for MongoDB
docs.hermesjs.tech
chassisjs/hermes
@chassisjs/hermes-mongodb
/
lib
/
outbox.d.ts
3 lines
(2 loc)
•
235 B
TypeScript
View Raw
1
2
3
import
{
type
ConsumerCreationParams
,
type
OutboxConsumer
,
type
OutboxEvent
}
from
'./typings.js'
;
export
declare
const
createOutboxConsumer
: <
Event
extends
OutboxEvent
>
(
params
:
ConsumerCreationParams
<
Event
>
) =>
OutboxConsumer
<
Event
>;