Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Caballerog/d5f87b2c571cf76d8da5c8f5116ade79 to your computer and use it in GitHub Desktop.
Save Caballerog/d5f87b2c571cf76d8da5c8f5116ade79 to your computer and use it in GitHub Desktop.
import { Prototype } from "./prototype";
export class ConcretePrototype2 implements Prototype {
operation() {
console.log("Operation from ConcretePrototype2");
}
clone(): Prototype {
return new ConcretePrototype2();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment