1
0
Fork 0
freesewing/index.ts
2018-07-14 16:04:39 +00:00

18 lines
367 B
TypeScript

import { Pattern } from './lib/pattern'
import { Point } from './lib/point'
import { Path } from './lib/path'
import { config } from './config/config'
import * as utils from './lib/utils'
import bezier from 'bezier-js'
var Freesewing = {
version: '1.0.1',
config,
pattern: Pattern,
point: Point,
path: Path,
utils,
bezier
}
export default Freesewing;