// Tests Default with Option B semantics // Properties with T | undefined should NOT be in required array import { Default } from "commontools"; interface SchemaRoot { // Property with undefined union - should be optional maybeTitle: Default; // Regular Default without undefined - should be required requiredTitle: Default; // undefined union with complex default maybeCount: Default; }