Exploring different ways to import multiple classes into a single class file:
import myClass1 'pathto1';
import myClass2 'pathto2';
import myClassn 'pathton';
Seeking a simpler method using one file (class export) with all classes imported in one line:
import AllMyClasses 'pathToLib';
What would be the optimal structure for this file?