mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 10:31:47 +00:00
6 lines
104 B
TypeScript
6 lines
104 B
TypeScript
import { z } from '@hono/zod-openapi';
|
|
|
|
export const SeekSchema = z.object({
|
|
seconds: z.number(),
|
|
});
|