I created multiple classes in a single file with the following structure
file: myclasses.ts
export class Class1 {....}
export class Class2 {....}
export class Class3 {....}
Now I am attempting to import all of them using a wildcard like this
import {*} from './myclasses';
However, this resulted in a syntax error.
What is the correct way to use the wildcard (*) when importing from a module?