mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 16:53:54 +01:00
34 lines
593 B
Markdown
34 lines
593 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [bitburner](./bitburner.md) > [NS](./bitburner.ns.md) > [atExit](./bitburner.ns.atexit.md)
|
|
|
|
## NS.atExit() method
|
|
|
|
Add callback function when the script dies
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
atExit(f: () => void, id?: string): void;
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --- | --- | --- |
|
|
| f | () => void | |
|
|
| id | string | _(Optional)_ |
|
|
|
|
**Returns:**
|
|
|
|
void
|
|
|
|
## Remarks
|
|
|
|
RAM cost: 0 GB
|
|
|
|
NS2 exclusive
|
|
|
|
Add callback to be executed when the script dies.
|
|
|