Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
269 Bytes
import { z } from "zod";
// Schema
export const urlSchema = z.object({
label: z.string(),
href: z.literal("").or(z.string().url()),
});
// Type
export type URL = z.infer<typeof urlSchema>;
// Defaults
export const defaultUrl: URL = {
label: "",
href: "",
};