UNPKG

renovate

Version:

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

16 lines (15 loc) 279 B
export interface JsonnetFile { dependencies?: Dependency[]; } export interface Dependency { source: Source; version: string; name?: string; } export interface Source { git?: GitSource; } export interface GitSource { remote: string; subdir?: string; }