UNPKG

query-registry

Version:

Query the npm registry for packuments, manifests, packages and download counts

15 lines (14 loc) 479 B
import * as z from "zod"; /** `DistTags` describes the mapping of distribution tags to semver version numbers (e.g., `{ "latest": "1.0.0" }`). */ export declare const DistTags: z.ZodObject<{ latest: z.ZodString; next: z.ZodOptional<z.ZodString>; alpha: z.ZodOptional<z.ZodString>; beta: z.ZodOptional<z.ZodString>; rc: z.ZodOptional<z.ZodString>; canary: z.ZodOptional<z.ZodString>; dev: z.ZodOptional<z.ZodString>; }, z.core.$catchall<z.ZodString>>;