(value: string)
| 2 | import { isInternalFileUrl } from '@/lib/uploads/utils/file-utils' |
| 3 | |
| 4 | const isUrlLike = (value: string) => |
| 5 | value.startsWith('http://') || value.startsWith('https://') || value.startsWith('/') |
| 6 | |
| 7 | export const RawFileInputSchema = z |
| 8 | .object({ |