@gmetrixr/rjson
Version:
(R)ecursive Json
11 lines (10 loc) • 334 B
TypeScript
import { IOrder } from "../../IOrder";
/**
* assigns value opposite of no_click_animation to hover_animation as no_click_animation
* has a negative tone to it, confusing the user
*/
declare class Migration implements IOrder {
execute(projectJson: unknown): void;
}
declare const migration: Migration;
export default migration;