@types/teen_process
Advanced tools
Comparing version 2.0.3 to 2.0.4
@@ -90,3 +90,3 @@ /// <reference types="node" /> | ||
cmd: string, | ||
args: ReadonlyArray<string> | undefined, | ||
args: readonly string[] | undefined, | ||
opts: TeenProcessExecOptions & { isBuffer: true }, | ||
@@ -96,3 +96,3 @@ ): Promise<TeenProcessExecResult<Buffer>>; | ||
cmd: string, | ||
args?: ReadonlyArray<string>, | ||
args?: readonly string[], | ||
opts?: TeenProcessExecOptions, | ||
@@ -118,3 +118,3 @@ ): Promise<TeenProcessExecResult<string>>; | ||
cmd: string; | ||
args: ReadonlyArray<string>; | ||
args: readonly string[]; | ||
proc: ChildProcess | null; | ||
@@ -125,7 +125,7 @@ opts: SubProcessOptions; | ||
constructor(cmd: string, args?: ReadonlyArray<string>, opts?: SubProcessOptions); | ||
constructor(cmd: string, args?: readonly string[], opts?: SubProcessOptions); | ||
readonly isRunning: boolean; | ||
emitLines(stream: string, lines: ReadonlyArray<string>): void; | ||
emitLines(stream: string, lines: readonly string[]): void; | ||
@@ -167,3 +167,3 @@ /** | ||
*/ | ||
join(allowedExitCodes?: ReadonlyArray<number>): Promise<number>; | ||
join(allowedExitCodes?: readonly number[]): Promise<number>; | ||
@@ -170,0 +170,0 @@ /* |
{ | ||
"name": "@types/teen_process", | ||
"version": "2.0.3", | ||
"version": "2.0.4", | ||
"description": "TypeScript definitions for teen_process", | ||
@@ -25,4 +25,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/teen_process", | ||
}, | ||
"typesPublisherContentHash": "9ff1702a67a48759db35b7967b30c19445696616dc07eaff4e4d2d1314c6ecf7", | ||
"typesPublisherContentHash": "87a88ef21cd847180b5634d54d71ebb410d3a605cf896471b5bdbc1a22891385", | ||
"typeScriptVersion": "4.5" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Tue, 07 Nov 2023 15:11:36 GMT | ||
* Last updated: Mon, 20 Nov 2023 23:36:24 GMT | ||
* Dependencies: [@types/node](https://npmjs.com/package/@types/node) | ||
@@ -14,0 +14,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
313232
11279