8 lines
169 B
TypeScript
8 lines
169 B
TypeScript
|
|
import { z } from 'zod';
|
||
|
|
|
||
|
|
export const searchQuerySchema = z.object({
|
||
|
|
q: z.string().min(2).max(200),
|
||
|
|
});
|
||
|
|
|
||
|
|
export type SearchQuery = z.infer<typeof searchQuerySchema>;
|