diff options
author | 2022-12-04 08:09:23 -0800 | |
---|---|---|
committer | 2022-12-04 08:09:23 -0800 | |
commit | 5bb8c42bdbdda11f816c180d69afb8e89bf407bd (patch) | |
tree | 300150cd6cddd6808d56b0e136b2000222fc2e15 /src/bun.js/api/bun.classes.ts | |
parent | 69114ac0a9edc79bf95768666dac88d60bffb3b3 (diff) | |
download | bun-5bb8c42bdbdda11f816c180d69afb8e89bf407bd.tar.gz bun-5bb8c42bdbdda11f816c180d69afb8e89bf407bd.tar.zst bun-5bb8c42bdbdda11f816c180d69afb8e89bf407bd.zip |
[Bun.spawn] Introduce `Subprocess.prototype.signalCode`
Diffstat (limited to 'src/bun.js/api/bun.classes.ts')
-rw-r--r-- | src/bun.js/api/bun.classes.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bun.js/api/bun.classes.ts b/src/bun.js/api/bun.classes.ts index 04dd94a38..aeac59f05 100644 --- a/src/bun.js/api/bun.classes.ts +++ b/src/bun.js/api/bun.classes.ts @@ -55,6 +55,9 @@ export default [ exitCode: { getter: "getExitCode", }, + signalCode: { + getter: "getSignalCode", + }, exited: { getter: "getExited", |