// Tests wrapper types that might trigger node-based analysis // This fixture specifically tests the fix for Default erasing to any // and incorrectly triggering node-based analysis instead of type-based import { Default, Cell } from "commontools"; interface Item { id: number; text: Default; } interface SchemaRoot { // This was generating `true` (any schema) before the fix // because Default erased to `any` type flag items: Default; // Also test Cell with array cellArray: Cell; // Nested Default in array configs: Default<{ timeout: Default }[], []>; }