typescript generic of multiple type

Solutions on MaxInterview for typescript generic of multiple type by the best coders in the world

showing results for - "typescript generic of multiple type"
Gwendolyn
06 Mar 2016
1interface Example<T extends MyClass | OtherClass> {}
2