A factory for creating a Compiler
abstract class CompilerFactory { abstract createCompiler(options?: CompilerOptions[] | undefined): Compiler;}