import { Base, createBase } from "./base"; export interface Todo extends Base { title: string; } export const todosSchema = createBase({ title: "todos", properties: { title: { type: "string", }, }, });