UNPKG

renovate

Version:

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

8 lines (7 loc) 339 B
import type { RenovateConfig } from '../../types'; import { AbstractMigration } from './abstract-migration'; export declare class RemovePropertyMigration extends AbstractMigration { readonly propertyName: string; constructor(propertyName: string, originalConfig: RenovateConfig, migratedConfig: RenovateConfig); run(): void; }