mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 06:56:24 +00:00
23 lines
507 B
TypeScript
23 lines
507 B
TypeScript
/*
|
|
* This file should be removed in future.
|
|
*/
|
|
|
|
declare interface Error {
|
|
validationSource?: string;
|
|
|
|
validationError?: string;
|
|
validationMessage?: string;
|
|
}
|
|
|
|
// can't use `resolveJsonModule` because it will copy json files and change dist path
|
|
|
|
declare module '*/package.json' {
|
|
import { PackageJson } from 'type-fest';
|
|
const value: PackageJson & { 'engines-next': Record<string, string> };
|
|
export = value;
|
|
}
|
|
|
|
declare module '*.json' {
|
|
const value: Record<string, any>;
|
|
export = value;
|
|
}
|