UNPKG
@arturwojnar/hermes-postgresql
Version:
latest (1.0.0-alpha.12)
1.0.0-alpha.12
1.0.0-alpha.11
1.0.0-alpha.10
1.0.0-alpha.9
1.0.0-alpha.8
Production-Ready TypeScript Outbox Pattern for PostgreSQL
docs.hermesjs.tech
arturwojnar/hermes
@arturwojnar/hermes-postgresql
/
lib
/
subscribeToReplicationSlot
/
sendStandbyStatusUpdate.d.ts
5 lines
(4 loc)
•
234 B
TypeScript
View Raw
1
2
3
4
5
import
type
{
Writable
}
from
'node:stream'
;
import
{
type
Lsn
}
from
'../common/lsn.js'
;
declare
const
sendStandbyStatusUpdate
:
(
stream
:
Writable
,
getLastAcknowledgedLsn
: () =>
Lsn
) =>
() =>
void
;
export
{ sendStandbyStatusUpdate };