@gmetrixr/rjson
Version:
(R)ecursive Json
11 lines (10 loc) • 303 B
TypeScript
import { IOrder } from "../../IOrder";
/**
* Item prop names and option prop names need to be unique.
* They cannot have any overlap with elements.
*/
declare class Migration implements IOrder {
execute(projectJson: unknown): void;
}
declare const migration: Migration;
export default migration;