Skip to content

Instantly share code, notes, and snippets.

@htdangkhoa
Created April 21, 2022 07:28
Show Gist options
  • Save htdangkhoa/bc5bf32d378692897b4691c61f406724 to your computer and use it in GitHub Desktop.
Save htdangkhoa/bc5bf32d378692897b4691c61f406724 to your computer and use it in GitHub Desktop.
export interface AbstractProductB {
usefulFunctionB(): string;
}
export class ConcreteProductB1 implements AbstractProductB {
public usefulFunctionB(): string {
return "The result of the product B1.";
}
}
export class ConcreteProductB2 implements AbstractProductB {
public usefulFunctionB(): string {
return "The result of the product B2.";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment