Abstract Factory
interface Chair {
color: string;
price(): number;
}
class ChairOffice implements Chair {
color: string;
price(): number { ... }
}
class ChairTable implements Chair {
color: string;
price(): number { ... }
}Last updated