/// import { toSchema } from "commontools"; interface Config { value: number; } const configSchema = toSchema({ "default": { value: 42 }, description: "Configuration schema", }); export { configSchema };