empty host = current host

This commit is contained in:
Hedrauta 2021-12-24 00:23:38 +01:00
parent ed86577d6c
commit 3eedd9df88

@ -4690,11 +4690,12 @@ export interface NS extends Singularity {
* Kills all running scripts on the specified server. This function returns true
* if any scripts were killed, and false otherwise. In other words, it will return
* true if there are any scripts running on the target server.
* If no host is defined, it will kill all scripts, where the script is running.
*
* @param host - IP or hostname of the server on which to kill all scripts.
* @returns True if any scripts were killed, and false otherwise.
*/
killall(host: string): boolean;
killall(host?: string): boolean;
/**
* Terminates the current script immediately.