v1.0.2 part 1

This commit is contained in:
Olivier Gagnon
2021-11-19 14:39:38 -05:00
parent 762b5b44aa
commit a4a931dad7
4 changed files with 12 additions and 54 deletions

View File

@@ -4069,12 +4069,7 @@ export interface NS extends Singularity {
* @param destination - Host of the destination server, which is the server to which the file will be copied.
* @returns True if the script/literature file is successfully copied over and false otherwise. If the files argument is an array then this function will return true if at least one of the files in the array is successfully copied.
*/
scp(
files: string[],
source: string,
// tslint:disable-next-line:unified-signatures
destination: string,
): Promise<boolean>;
scp(files: string | string[], source: string, destination: string): Promise<boolean>;
/**
* List files on a server.