@arturwojnar/hermes-postgresql
Version:
Production-Ready TypeScript Outbox Pattern for PostgreSQL
7 lines (6 loc) • 326 B
TypeScript
type Lsn = `${string}/${string}`;
declare const convertLsnToBigInt: (lsn: Lsn) => bigint;
declare const constructLsn: (upperWal: number, lowerWal: number) => Lsn;
declare const isLsn: (value: string) => value is Lsn;
declare const toLsn: (value: string) => Lsn;
export { Lsn, constructLsn, convertLsnToBigInt, isLsn, toLsn };