1
0
Fork 0
freesewing/lib/part.ts
2018-07-10 19:29:09 +02:00

11 lines
154 B
TypeScript

import { PatternOption } from './types'
export default class Part {
id: string;
constructor(id: string) {
this.id = id;
return this;
}
}