@gmetrixr/rjson
Version:
(R)ecursive Json
14 lines (13 loc) • 440 B
TypeScript
import { IOrder } from "../../IOrder";
/**
* Rerun pop items migration. This is being done as the migration rjson scheme has changed.
* new scheme
* 1. Apply initial migrations
* 2. inject file sources
* 3. run normal migrations - Few migrations require file sources to be injected
*/
declare class Migration implements IOrder {
execute(projectJson: unknown): void;
}
declare const migration: Migration;
export default migration;