@kurrent/kurrentdb-client
Version:
KurrentDB gRPC NodeJS Client SDK
6 lines (5 loc) • 405 B
TypeScript
import type { Client } from "../../Client";
import type { AppendResult, EventData } from "../../types";
import { InternalOptions } from "../../utils";
import type { AppendToStreamOptions } from ".";
export declare const batchAppend: (this: Client, streamName: string, events: EventData[], { streamState, batchAppendSize, ...baseOptions }: InternalOptions<AppendToStreamOptions>) => Promise<AppendResult>;