This package generates TypeScript code based on RONIN models.
import { generate } from '@ronin/codegen';
import { model, string } from 'ronin/schema';
const User = model({
slug: 'user',
pluralSlug: 'users',
fields: {
name: string(),
email: string({ required: true }),
},
});
const generateCode = generate([User]);
// ^? string
Use the following command to run the test suite:
bun test