import * as v from "valibot" import { customBlockPageSchema } from "../pages/page.js" /** * Message sent by the host whenever the custom block's nearest page ancestor changes. */ export const pageChangedMessageSchema = v.object({ type: v.literal("pageChanged"), page: customBlockPageSchema, }) export type PageChangedMessage = v.InferOutput