mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 15:36:25 +00:00
14 lines
305 B
TypeScript
14 lines
305 B
TypeScript
import type { PackageJson } from 'type-fest';
|
|
|
|
export interface ModuleApi {
|
|
displayName?: string;
|
|
url?: string;
|
|
|
|
/** optional URLs to add to docs as references */
|
|
urls?: string[];
|
|
}
|
|
|
|
export type RenovatePackageJson = PackageJson & {
|
|
'engines-next': Record<string, string>;
|
|
version: string;
|
|
};
|