Skip to content

Instantly share code, notes, and snippets.

@kaugustanec
Created April 8, 2024 07:45
Show Gist options
  • Save kaugustanec/2d3a98f72994eda40f3fc736b2337c0e to your computer and use it in GitHub Desktop.
Save kaugustanec/2d3a98f72994eda40f3fc736b2337c0e to your computer and use it in GitHub Desktop.
factory function
function exampleMixin<T extends Constructor>(base: T) {
return class ExampleMixinClass extends base {
method_1(parameter: number): void {
// code
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment