bun-types-no-globals 1.3.1-canary.20251014T140637 → 1.3.1-canary.20251016T140641

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.
Files changed (2) hide show
  1. package/lib/shell.d.ts +2 -1
  2. package/package.json +1 -1
package/lib/shell.d.ts CHANGED
@@ -112,8 +112,9 @@ declare module "bun" {
112
112
  * By default, the shell will write to the current process's stdout and stderr, as well as buffering that output.
113
113
  *
114
114
  * This configures the shell to only buffer the output.
115
+ * @param isQuiet - Whether to suppress output. Defaults to true.
115
116
  */
116
- quiet(): this;
117
+ quiet(isQuiet?: boolean): this;
117
118
 
118
119
  /**
119
120
  * Read from stdout as a string, line by line
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bun-types-no-globals",
3
- "version": "1.3.1-canary.20251014T140637",
3
+ "version": "1.3.1-canary.20251016T140641",
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",