just-bash 2.11.2 → 2.11.3

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/dist/Bash.d.ts CHANGED
@@ -133,6 +133,17 @@ export interface BashOptions {
133
133
  * When provided, interpreter emits coverage hits for analysis.
134
134
  */
135
135
  coverage?: FeatureCoverageWriter;
136
+ /**
137
+ * Virtual process info for sandboxed environment.
138
+ * Overrides the default virtual PID/UID values exposed via $$, $PPID, $UID, $EUID, $BASHPID,
139
+ * and /proc/self/status. Real host process info is never exposed.
140
+ */
141
+ processInfo?: {
142
+ pid?: number;
143
+ ppid?: number;
144
+ uid?: number;
145
+ gid?: number;
146
+ };
136
147
  }
137
148
  export interface ExecOptions {
138
149
  /**