Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

registryItemFontSchema

const registryItemFontSchema: z.ZodObject<{
family: z.ZodString;
provider: z.ZodLiteral<"google">;
import: z.ZodString;
variable: z.ZodString;
subsets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
}
, "strip", z.ZodTypeAny, {
family: string;
provider: "google";
import: string;
variable: string;
weight?: string[] | undefined;
subsets?: string[] | undefined;
selector?: string | undefined;
}
, {
family: string;
provider: "google";
import: string;
variable: string;
weight?: string[] | undefined;
subsets?: string[] | undefined;
selector?: string | undefined;
}
>
;