import { commands } from '../constants/consts.js'; export type CommandType = typeof commands[number]; export type ImportMap = { imports: { [x: string]: string; }; }; export interface BundlerBackend { getBundlerConfig(params: { bundleId: string; }): Promise; }