1
0
Fork 0

🚚 Imported @freesewing/benjamin

This commit is contained in:
Joost De Cock 2019-04-23 18:54:21 +02:00
parent 99d6747236
commit 322bdc0176
7 changed files with 466 additions and 0 deletions

View file

@ -0,0 +1,13 @@
import freesewing from "freesewing";
import plugins from "@freesewing/plugin-bundle";
import config from "../config";
// Parts
import draftFront from "./front";
// Create new design
const benjamin = new freesewing.Design(config, plugins);
// Attach draft methods to prototype
benjamin.prototype.draftFront = draftFront;
export default benjamin;