1
0
Fork 0
freesewing/lib/option.ts
2018-07-12 12:53:49 +00:00

14 lines
258 B
TypeScript

import { PatternOption } from './types'
export class Option {
id: string;
config: PatternOption;
val: number;
constructor(config: PatternOption) {
this.id = config.id;
this.config = config;
this.val = config.val;
return this;
}
}