0.0.1 • Published 8 months ago

@ronin/schema v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

Schemas in Code

import { schema, string } from 'ronin/schema';

export const Account = schema({
    slug: 'account',

    fields: {
        name: string({ required: true }),
    },
});
0.0.1

8 months ago