@gmetrixr/rjson
Version:
(R)ecursive Json
11 lines (10 loc) • 330 B
TypeScript
import { IOrder } from "../../IOrder";
/**
* Assign the default height of 0.85M to scenes where scene_viewer_height = undefined
* All existing scenes assume a height of 0.85M
*/
declare class Migration implements IOrder {
execute(projectJson: unknown): void;
}
declare const migration: Migration;
export default migration;