import {ExtolloCompileConfig} from '../types' export abstract class Phase { constructor( protected readonly config: ExtolloCompileConfig, protected readonly tsconfig: any, ) { } public abstract run(): void | Promise; }