randydev commited on
Commit
bbd436a
·
verified ·
1 Parent(s): e6618eb

Update lib/types/sfilemobiesearch-v1.js

Browse files
Files changed (1) hide show
  1. lib/types/sfilemobiesearch-v1.js +2 -2
lib/types/sfilemobiesearch-v1.js CHANGED
@@ -1,11 +1,11 @@
1
  import { z } from 'zod';
2
 
3
- export const SfilemobiSearchArgsSchema = z.object({
4
  0: z.string(),
5
  1: z.number().min(1).optional().default(1)
6
  });
7
 
8
- export const SfilemobiSearchSchema = z.array(z.object({
9
  url: z.string().url(),
10
  filename: z.string(),
11
  icon: z.string().url(),
 
1
  import { z } from 'zod';
2
 
3
+ const SfilemobiSearchArgsSchema = z.object({
4
  0: z.string(),
5
  1: z.number().min(1).optional().default(1)
6
  });
7
 
8
+ const SfilemobiSearchSchema = z.array(z.object({
9
  url: z.string().url(),
10
  filename: z.string(),
11
  icon: z.string().url(),