@@ -1740,9 +1740,9 @@ declare module "bun" {
17401740 * @default "esm"
17411741 */
17421742 format ?: /**
1743- * ECMAScript Module format
1744- */
1745- | "esm"
1743+ * ECMAScript Module format
1744+ */
1745+ | "esm"
17461746 /**
17471747 * CommonJS format
17481748 * **Experimental**
@@ -3316,10 +3316,10 @@ declare module "bun" {
33163316 function color (
33173317 input : ColorInput ,
33183318 outputFormat ?: /**
3319- * True color ANSI color string, for use in terminals
3320- * @example \x1b[38;2;100;200;200m
3321- */
3322- | "ansi"
3319+ * True color ANSI color string, for use in terminals
3320+ * @example \x1b[38;2;100;200;200m
3321+ */
3322+ | "ansi"
33233323 | "ansi-16"
33243324 | "ansi-16m"
33253325 /**
@@ -5650,17 +5650,11 @@ declare module "bun" {
56505650 maxBuffer ?: number ;
56515651 }
56525652
5653- interface SpawnSyncOptions < In extends Writable , Out extends Readable , Err extends Readable > extends BaseOptions <
5654- In ,
5655- Out ,
5656- Err
5657- > { }
5658-
5659- interface SpawnOptions < In extends Writable , Out extends Readable , Err extends Readable > extends BaseOptions <
5660- In ,
5661- Out ,
5662- Err
5663- > {
5653+ interface SpawnSyncOptions < In extends Writable , Out extends Readable , Err extends Readable >
5654+ extends BaseOptions < In , Out , Err > { }
5655+
5656+ interface SpawnOptions < In extends Writable , Out extends Readable , Err extends Readable >
5657+ extends BaseOptions < In , Out , Err > {
56645658 /**
56655659 * If true, stdout and stderr pipes will not automatically start reading
56665660 * data. Reading will only begin when you access the `stdout` or `stderr`
0 commit comments