A class decorator that prevents instantiation of the class. Useful for grouping static methods together without allowing instances to be created.
The class constructor to make static
The decorator context
A wrapper that throws a TypeError when instantiated
@Staticclass MathUtils { ... } Copy
@Staticclass MathUtils { ... }
A class decorator that prevents instantiation of the class. Useful for grouping static methods together without allowing instances to be created.