UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

47 lines (46 loc) 1.47 kB
import { z } from 'zod'; import type { PackageDependency } from '../../types'; export declare const goRules: readonly ["go_repository", "_go_repository"]; export declare const GoTarget: z.ZodEffects<z.ZodEffects<z.ZodObject<{ rule: z.ZodEnum<["go_repository", "_go_repository"]>; name: z.ZodString; tag: z.ZodOptional<z.ZodString>; commit: z.ZodOptional<z.ZodString>; importpath: z.ZodString; remote: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { name: string; rule: "go_repository" | "_go_repository"; importpath: string; tag?: string | undefined; commit?: string | undefined; remote?: string | undefined; }, { name: string; rule: "go_repository" | "_go_repository"; importpath: string; tag?: string | undefined; commit?: string | undefined; remote?: string | undefined; }>, { name: string; rule: "go_repository" | "_go_repository"; importpath: string; tag?: string | undefined; commit?: string | undefined; remote?: string | undefined; }, { name: string; rule: "go_repository" | "_go_repository"; importpath: string; tag?: string | undefined; commit?: string | undefined; remote?: string | undefined; }>, PackageDependency<Record<string, any>>[], { name: string; rule: "go_repository" | "_go_repository"; importpath: string; tag?: string | undefined; commit?: string | undefined; remote?: string | undefined; }>;