1
0
Fork 0
freesewing/index.ts
2018-07-15 08:36:19 +00:00

17 lines
350 B
TypeScript

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