We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2691a18 commit 36ab335Copy full SHA for 36ab335
apps/sim/lib/uploads/utils/file-schemas.ts
@@ -47,6 +47,8 @@ export const RawFileInputSchema = z
47
{ message: 'File path must reference an uploaded file' }
48
)
49
50
+export type RawFileInput = z.infer<typeof RawFileInputSchema>
51
+
52
export const RawFileInputArraySchema = z.array(RawFileInputSchema)
53
54
export const FileInputSchema = z.union([RawFileInputSchema, z.string()])
0 commit comments