renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
15 lines (14 loc) • 310 B
TypeScript
import type { GoproxyFallback } from './common';
export interface DataSource {
datasource: string;
registryUrl?: string;
packageName: string;
}
export interface VersionInfo {
Version: string;
Time?: string;
}
export interface GoproxyItem {
url: string;
fallback: GoproxyFallback;
}