ryu-js / lib /types /sfilemobiesearch-v1.js
randydev's picture
Update lib/types/sfilemobiesearch-v1.js
bbd436a verified
raw
history blame
413 Bytes
import { z } from 'zod';
const SfilemobiSearchArgsSchema = z.object({
0: z.string(),
1: z.number().min(1).optional().default(1)
});
const SfilemobiSearchSchema = z.array(z.object({
url: z.string().url(),
filename: z.string(),
icon: z.string().url(),
type: z.string(),
filesizeH: z.string(),
filesize: z.number()
}));
export { SfilemobiSearchArgsSchema, SfilemobiSearchSchema };