Farmbot-Web-App/frontend/__test_support__/map_transform_props.ts

10 lines
225 B
TypeScript
Raw Normal View History

2018-04-12 21:36:16 -06:00
import { MapTransformProps } from "../farm_designer/map/interfaces";
export const fakeMapTransformProps = (): MapTransformProps => {
return {
quadrant: 2,
gridSize: { x: 3000, y: 1500 },
xySwap: false,
};
};