mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 23:15:36 +00:00
10 lines
229 B
TypeScript
10 lines
229 B
TypeScript
import vine from '@vinejs/vine';
|
|
|
|
export const searchValidator = vine.compile(
|
|
vine.object({
|
|
searchTerm: vine.string().trim().minLength(1).maxLength(254),
|
|
links: vine.boolean(),
|
|
collections: vine.boolean(),
|
|
})
|
|
);
|