import type { ReadonlyJSONValue } from '../../shared/src/json.ts'; import { type Read } from './dag/store.ts'; import type { ClientID } from './sync/ids.ts'; export type PendingMutation = { readonly name: string; readonly id: number; readonly args: ReadonlyJSONValue; readonly clientID: ClientID; }; /** * This returns the pending changes with the oldest mutations first. */ export declare function pendingMutationsForAPI(dagRead: Read): Promise; //# sourceMappingURL=pending-mutations.d.ts.map