1
0
Fork 0
freesewing/lib/model.ts

15 lines
265 B
TypeScript
Raw Normal View History

2018-07-10 19:29:09 +02:00
import { PatternOption } from './types'
export default class Model {
id: string;
config: PatternOption;
val: number;
constructor(config: PatternOption) {
this.id = config.id;
this.config = config;
this.val = config.val;
return this;
}
}