bun-types-no-globals 1.3.4-canary.20251127T140647 → 1.3.4-canary.20251128T140630
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.
- package/lib/bun.d.ts +18 -13
- package/package.json +1 -1
package/lib/bun.d.ts
CHANGED
|
@@ -1740,10 +1740,9 @@ declare module "bun" {
|
|
|
1740
1740
|
* @default "esm"
|
|
1741
1741
|
*/
|
|
1742
1742
|
format?: /**
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
| "esm"
|
|
1743
|
+
* ECMAScript Module format
|
|
1744
|
+
*/
|
|
1745
|
+
| "esm"
|
|
1747
1746
|
/**
|
|
1748
1747
|
* CommonJS format
|
|
1749
1748
|
* **Experimental**
|
|
@@ -3317,10 +3316,10 @@ declare module "bun" {
|
|
|
3317
3316
|
function color(
|
|
3318
3317
|
input: ColorInput,
|
|
3319
3318
|
outputFormat?: /**
|
|
3320
|
-
|
|
3321
|
-
|
|
3322
|
-
|
|
3323
|
-
|
|
3319
|
+
* True color ANSI color string, for use in terminals
|
|
3320
|
+
* @example \x1b[38;2;100;200;200m
|
|
3321
|
+
*/
|
|
3322
|
+
| "ansi"
|
|
3324
3323
|
| "ansi-16"
|
|
3325
3324
|
| "ansi-16m"
|
|
3326
3325
|
/**
|
|
@@ -5651,11 +5650,17 @@ declare module "bun" {
|
|
|
5651
5650
|
maxBuffer?: number;
|
|
5652
5651
|
}
|
|
5653
5652
|
|
|
5654
|
-
interface SpawnSyncOptions<In extends Writable, Out extends Readable, Err extends Readable>
|
|
5655
|
-
|
|
5656
|
-
|
|
5657
|
-
|
|
5658
|
-
|
|
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
|
+
> {
|
|
5659
5664
|
/**
|
|
5660
5665
|
* If true, stdout and stderr pipes will not automatically start reading
|
|
5661
5666
|
* data. Reading will only begin when you access the `stdout` or `stderr`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bun-types-no-globals",
|
|
3
|
-
"version": "1.3.4-canary.
|
|
3
|
+
"version": "1.3.4-canary.20251128T140630",
|
|
4
4
|
"main": "./generator/index.ts",
|
|
5
5
|
"types": "./lib/index.d.ts",
|
|
6
6
|
"description": "TypeScript type definitions for Bun without global types pollution",
|