yet another any

This commit is contained in:
Olivier Gagnon
2022-07-18 02:36:51 -04:00
parent 5f229c9c67
commit e9788536ed
2 changed files with 5 additions and 4 deletions

View File

@@ -85,7 +85,7 @@ export interface Multipliers {
*/
export interface RunningScript {
/** Arguments the script was called with */
args: string[];
args: (string | number | boolean)[];
/** Filename of the script */
filename: string;
/**
@@ -321,7 +321,7 @@ export interface ProcessInfo {
/** Number of threads script is running with */
threads: number;
/** Script's arguments */
args: string[];
args: (string | number | boolean)[];
/** Process ID */
pid: number;
}