Skip to content

Instantly share code, notes, and snippets.

@kaugustanec
Created April 8, 2024 08:49
Show Gist options
  • Save kaugustanec/0fe49835f0ec22d81d6ff125c579f80b to your computer and use it in GitHub Desktop.
Save kaugustanec/0fe49835f0ec22d81d6ff125c579f80b to your computer and use it in GitHub Desktop.
Mixins with Generics
class Duck {
hasFeathers(): boolean {
return true
}
hasOrangeFeet(): boolean {
return true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment