Skip to content

Instantly share code, notes, and snippets.

@kaugustanec
Created April 8, 2024 08:53
Show Gist options
  • Save kaugustanec/c3c165b6eec5110b4741c148f0ec4dea to your computer and use it in GitHub Desktop.
Save kaugustanec/c3c165b6eec5110b4741c148f0ec4dea 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
    }
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment