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); const threshold = cell(5, { type: "number" } as const satisfies __ctHelpers.JSONSchema); const multiplier = cell(2, { type: "number" } as const satisfies __ctHelpers.JSONSchema); const result = __ctHelpers.derive({ type: "object", properties: { value: { type: "number", asCell: true }, threshold: { type: "number", asCell: true }, multiplier: { type: "number", asCell: true } }, required: ["value", "threshold", "multiplier"] } as const satisfies __ctHelpers.JSONSchema, { type: "number" } as const satisfies __ctHelpers.JSONSchema, { value, threshold: threshold, multiplier: multiplier }, ({ value: v, threshold, multiplier }) => v.get() > threshold.get() ? v.get() * multiplier.get() : v.get()); return result; } // @ts-ignore: Internals function h(...args: any[]) { return __ctHelpers.h.apply(null, args); } // @ts-ignore: Internals h.fragment = __ctHelpers.h.fragment;