Skip to content

Instantly share code, notes, and snippets.

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