import * as __ctHelpers from "commontools"; import { cell, derive } from "commontools"; export default function TestDerive() { const value = cell(10, { type: "number" } as const satisfies __ctHelpers.JSONSchema); // No captures - should not be transformed const result = derive({ type: "number", asCell: true } as const satisfies __ctHelpers.JSONSchema, { type: "number" } as const satisfies __ctHelpers.JSONSchema, value, (v) => v.get() * 2); return result; } // @ts-ignore: Internals function h(...args: any[]) { return __ctHelpers.h.apply(null, args); } // @ts-ignore: Internals h.fragment = __ctHelpers.h.fragment;