@samepage/internal
Version:
Utilities used across modules - not meant for use by users directly
5 lines (4 loc) • 330 B
TypeScript
import { z } from "zod";
import { DecodeState, zSharePageUpdateWebsocketMessage } from "./types";
declare const handleSharePageUpdateOperation: ({ changes, notebookPageId, dependencies, }: z.infer<typeof zSharePageUpdateWebsocketMessage>, decodeState: DecodeState) => Promise<void>;
export default handleSharePageUpdateOperation;