UNPKG

@kurrent/kurrentdb-client

Version:
6 lines (5 loc) 383 B
import type { Client } from "../../Client"; import type { AppendResult, EventData } from "../../types"; import { InternalOptions } from "../../utils"; import type { AppendToStreamOptions } from "."; export declare const append: (this: Client, streamName: string, events: EventData[], { streamState, ...baseOptions }: InternalOptions<AppendToStreamOptions>) => Promise<AppendResult>;