Skip to content

Instantly share code, notes, and snippets.

@htdangkhoa
Created April 21, 2022 07:29
Show Gist options
  • Save htdangkhoa/61aba1d6be30375f8537921aab715df3 to your computer and use it in GitHub Desktop.
Save htdangkhoa/61aba1d6be30375f8537921aab715df3 to your computer and use it in GitHub Desktop.
export interface AbstractFactory {
createProductA(): AbstractProductA;
createProductB(): AbstractProductB;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment