renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
27 lines (26 loc) • 540 B
TypeScript
export interface ServicesIndexRaw {
resources: {
'@id': string;
'@type': string;
}[];
}
export interface CatalogEntry {
version: string;
published?: string;
projectUrl?: string;
listed?: boolean;
packageContent?: string;
}
export interface CatalogPage {
'@id': string;
items: {
catalogEntry: CatalogEntry;
}[];
}
export interface PackageRegistration {
items: CatalogPage[];
}
export interface ParsedRegistryUrl {
feedUrl: string;
protocolVersion: number | null;
}