Skip to content

Instantly share code, notes, and snippets.

@kaugustanec
Created April 8, 2024 09:59
Show Gist options
  • Save kaugustanec/6de7a62bdada6f5959571adaea49c8f2 to your computer and use it in GitHub Desktop.
Save kaugustanec/6de7a62bdada6f5959571adaea49c8f2 to your computer and use it in GitHub Desktop.
function orangeFeetMixin<T extends DuckConstructor>(Duck: T) {
  return class orangeFeetDuck extends Duck {
    hasOrangeFeet(): boolean {
      return true
    }
getFeatherColours(): string {
return 'orange'
}
  };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment