tsdown 0.18.3 → 0.19.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,16 @@
1
+ import { f as UserConfig, i as InlineConfig, m as UserConfigFn, p as UserConfigExport } from "./index-CIxE8YXE.mjs";
2
+
3
+ //#region src/config/options.d.ts
4
+ declare function mergeConfig(defaults: UserConfig, overrides: UserConfig): UserConfig;
5
+ declare function mergeConfig(defaults: InlineConfig, overrides: InlineConfig): InlineConfig;
6
+ //#endregion
7
+ //#region src/config.d.ts
8
+ /**
9
+ * Defines the configuration for tsdown.
10
+ */
11
+ declare function defineConfig(options: UserConfig): UserConfig;
12
+ declare function defineConfig(options: UserConfig[]): UserConfig[];
13
+ declare function defineConfig(options: UserConfigFn): UserConfigFn;
14
+ declare function defineConfig(options: UserConfigExport): UserConfigExport;
15
+ //#endregion
16
+ export { mergeConfig as n, defineConfig as t };