config.d.mts 589 B

123456789101112131415
  1. import "./shared/binding-BohGL_65.mjs";
  2. import { F as VERSION, r as defineConfig, t as ConfigExport } from "./shared/define-config-cG45vHwf.mjs";
  3. //#region src/utils/load-config.d.ts
  4. /**
  5. * Load config from a file in a way that Rolldown does.
  6. *
  7. * @param configPath The path to the config file. If empty, it will look for `rolldown.config` with supported extensions in the current working directory.
  8. * @returns The loaded config export
  9. *
  10. * @category Config
  11. */
  12. declare function loadConfig(configPath: string): Promise<ConfigExport>;
  13. //#endregion
  14. export { VERSION, defineConfig, loadConfig };