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