/// import { cell } from "commontools"; const existingSchema = { type: "number" } as const; export default function TestDoubleInjectAlreadyHasSchema() { // Should NOT transform - already has 2 arguments const _c1 = cell(10, existingSchema); const _c2 = cell("hello", { type: "string" }); const _c3 = cell(true, { type: "boolean" } as const); return null; }