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