renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
11 lines (10 loc) • 366 B
TypeScript
import type { DEFAULT_REGISTRY_URL } from './utils';
/**
* null means a registry was defined, but we couldn't find a valid URL
*/
export type CargoRegistryUrl = string | typeof DEFAULT_REGISTRY_URL | null;
export type CargoRegistries = Record<string, CargoRegistryUrl>;
export interface CargoManagerData {
nestedVersion?: boolean;
registryName?: string;
}