export interface IBundler {
    bundle(controllerFileName: string, outputDir: string): Promise<void>;
}
