UNPKG

@arturwojnar/hermes-postgresql

Version:

Production-Ready TypeScript Outbox Pattern for PostgreSQL

5 lines (4 loc) 310 B
import { JSONValue } from 'postgres'; import { ConsumerCreationParams } from '../common/ConsumerCreationParams.js'; import { OutboxConsumer } from './OutboxConsumer.js'; export declare const createOutboxConsumer: <Message extends JSONValue>(params: ConsumerCreationParams<Message>) => OutboxConsumer<Message>;