@gmetrixr/rjson
Version:
(R)ecursive Json
11 lines (10 loc) • 356 B
TypeScript
import { IOrder } from "../../IOrder";
/**
* Assigns true value to enable_gyro where enable_gyro is undefined.
* Because upto this point, enable_gyro had default of true which is now changed to false.
*/
declare class Migration implements IOrder {
execute(projectJson: unknown): void;
}
declare const migration: Migration;
export default migration;