mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-22 15:43:49 +01:00
Merge pull request #2478 from nickofolas/update-toast-signature
Update toast signature
This commit is contained in:
commit
2b10c11913
4
dist/bitburner.d.ts
vendored
4
dist/bitburner.d.ts
vendored
@ -3982,9 +3982,9 @@ export declare interface NS extends Singularity {
|
|||||||
* Queue a toast (bottom-right notification).
|
* Queue a toast (bottom-right notification).
|
||||||
* @param msg - Message in the toast.
|
* @param msg - Message in the toast.
|
||||||
* @param variant - Type of toast, must be one of success, info, warning, error. Defaults to success.
|
* @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.
|
* Download a file from the internet.
|
||||||
|
4
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
4
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
@ -5670,9 +5670,9 @@ export interface NS extends Singularity {
|
|||||||
* Queue a toast (bottom-right notification).
|
* Queue a toast (bottom-right notification).
|
||||||
* @param msg - Message in the toast.
|
* @param msg - Message in the toast.
|
||||||
* @param variant - Type of toast, must be one of success, info, warning, error. Defaults to success.
|
* @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.
|
* Download a file from the internet.
|
||||||
|
Loading…
Reference in New Issue
Block a user