28 lines
496 B
TypeScript
28 lines
496 B
TypeScript
import { Freesewing } from './lib/freesewing'
|
|
|
|
var freesewing = new Freesewing();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//svg.pre('loadStyle', function (next) {
|
|
// console.log('loadStyle hook');
|
|
// console.log(this.style);
|
|
// this.style= 'p {line-height: 1.21;}';
|
|
// console.log('logging in hook', this);
|
|
// next();
|
|
//});
|
|
|
|
//var p = new app.pattern({parts:['tst']});
|
|
//p.draft = function(){
|
|
// console.log('drafting in lib index');
|
|
//}
|
|
//p.draft();
|
|
//p.render();
|
|
export default freesewing;
|