// Mirrors schema-generator fixture: recipe-with-types (inputSchema) // Root type must be named SchemaRoot for the fixtures runner. import { Default } from "commontools"; interface Item { text: Default; } interface InputSchemaInterface { title: Default; items: Default; } type SchemaRoot = InputSchemaInterface;