10 lines
300 B
TypeScript
10 lines
300 B
TypeScript
import vine from '@vinejs/vine'
|
|
|
|
export const createUserValidator = vine.compile(
|
|
vine.object({
|
|
firstName: vine.string().minLength(2).maxLength(50),
|
|
lastName: vine.string().minLength(2).maxLength(50),
|
|
className: vine.string().minLength(2).maxLength(10),
|
|
avatar: vine.file(),
|
|
})
|
|
)
|