mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-14 20:01:47 +00:00
8 lines
176 B
TypeScript
8 lines
176 B
TypeScript
import { z } from '@hono/zod-openapi';
|
|
|
|
export const SearchSchema = z.object({
|
|
query: z.string(),
|
|
params: z.string().optional(),
|
|
continuation: z.string().optional(),
|
|
});
|