12 lines
335 B
JavaScript
12 lines
335 B
JavaScript
import freesewing from '@freesewing/core'
|
|
import plugins from '@freesewing/plugin-bundle'
|
|
import config from '../config'
|
|
import draftBox from './box'
|
|
|
|
// Create new design
|
|
const Pattern = new freesewing.Design(config, plugins)
|
|
|
|
// Attach the draft methods to the prototype
|
|
Pattern.prototype.draftBox = draftBox
|
|
|
|
export default Pattern
|