UNPKG

@gmetrixr/rjson

Version:
12 lines (11 loc) 414 B
import { R, RecordNode, RT } from "../../../r"; import { IOrder } from "../../IOrder"; /** * @description Converts t type project json to r type project json */ declare class Migration implements IOrder { execute(projectJson: unknown): RecordNode<RT.project>; } declare const migration: Migration; export default migration; export declare const migrateElement: (tElement: any) => R.RecordNode<R.RT.element>;