12 lines
154 B
TypeScript
12 lines
154 B
TypeScript
![]() |
import { PatternOption } from './types'
|
||
|
|
||
|
export default class Part {
|
||
|
id: string;
|
||
|
|
||
|
constructor(id: string) {
|
||
|
this.id = id;
|
||
|
|
||
|
return this;
|
||
|
}
|
||
|
}
|