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