import * as __ctHelpers from "commontools"; import { cell } from "commontools"; export default function TestLiteralWidenObjectProperties() { const _obj = cell({ x: 10, y: 20, name: "point" }, { type: "object", properties: { x: { type: "number" }, y: { type: "number" }, name: { type: "string" } }, required: ["x", "y", "name"] } as const satisfies __ctHelpers.JSONSchema); return null; } // @ts-ignore: Internals function h(...args: any[]) { return __ctHelpers.h.apply(null, args); } // @ts-ignore: Internals h.fragment = __ctHelpers.h.fragment;