Document null duration for toasts

This commit is contained in:
nickofolas 2022-01-08 14:56:29 -06:00
parent d74efd6a4a
commit a971921417
2 changed files with 4 additions and 4 deletions

4
dist/bitburner.d.ts vendored

@ -3982,9 +3982,9 @@ export declare interface NS extends Singularity {
* Queue a toast (bottom-right notification).
* @param msg - Message in the toast.
* @param variant - Type of toast, must be one of success, info, warning, error. Defaults to success.
* @param duration - Duration of toast in ms, defaults to 2000
* @param duration - Duration of toast in ms. Can also be null to create a persistent toast. Defaults to 2000
*/
toast(msg: any, variant?: string, duration?: number): void;
toast(msg: any, variant?: string, duration?: number | null): void;
/**
* Download a file from the internet.

@ -5670,9 +5670,9 @@ export interface NS extends Singularity {
* Queue a toast (bottom-right notification).
* @param msg - Message in the toast.
* @param variant - Type of toast, must be one of success, info, warning, error. Defaults to success.
* @param duration - Duration of toast in ms, defaults to 2000
* @param duration - Duration of toast in ms. Can also be null to create a persistent toast. Defaults to 2000
*/
toast(msg: any, variant?: string, duration?: number): void;
toast(msg: any, variant?: string, duration?: number | null): void;
/**
* Download a file from the internet.