function exampleMixin<T extends Constructor>(base: T) {
return class ExampleMixinClass extends base {
method_1(parameter: number): void {
// code
}
}
}
view raw index.tsx hosted with ❤ by GitHub