mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 06:56:24 +00:00
11 lines
233 B
TypeScript
11 lines
233 B
TypeScript
import type { PackageJson } from 'type-fest';
|
|
|
|
export interface ModuleApi {
|
|
displayName?: string;
|
|
url?: string;
|
|
}
|
|
|
|
export type RenovatePackageJson = PackageJson & {
|
|
'engines-next': Record<string, string>;
|
|
version: string;
|
|
};
|