1
0
Fork 0
freesewing/plugins/plugin-annotations/src/index.mjs

23 lines
640 B
JavaScript
Raw Normal View History

2023-02-16 23:57:44 +00:00
import { bartack } from './bartack.mjs'
import { crossbox } from './crossbox.mjs'
import { cutonfold } from './cutonfold.mjs'
import { pleat } from './pleat.mjs'
import { sewtogether } from './sewtogether.mjs'
// Named exports
// export bartack
export const bartackPlugin = bartack
export const pluginBartack = bartack
export const crossboxPlugin = crossbox
export const pluginCrossbox = crossbox
export const cutonfoldPlugin = cutonfold
export const pluginCutonfold = cutonfold
export const pleatPlugin = pleat
export const pluginPleat = pleat
export const sewtogetherPlugin = sewtogether
export const pluginSewtogether = sewtogether