import type es from 'estree'; import type { Context } from '../..'; /** * A function that converts multiple programs into a single program * using the topological ordering */ export type Bundler = (programs: Record, entrypointFilePath: string, topoOrder: string[], context: Context) => es.Program; declare const defaultBundler: Bundler; export default defaultBundler;