How can you retrieve the class name from within a Class in typescript?
For instance, consider this code snippet:
export class SomeRandomName extends AbstractSomething<SomeType> implements OnDestroy {
className = 'SomeRandomName';
Is there a method to automatically set the className
variable to the name of the class SomeRandomName
?
Appreciate any insights.