// CT-1215: Recursive type with Writable<> wrapper creates orphaned $ref // Uses the real Cell/Writable branded interface (provided by test prelude) type Default = T; export interface TodoItem { title: string; done: Default; items: Writable>; } interface SchemaRoot { todos: Default; }