File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ interface pythonBridge extends Function {
55export const pythonBridge : pythonBridge
66
77export interface PythonBridgeOptions {
8- intepreter ?: string ;
8+ python ?: string ;
99 stdio ?: [ PipeStdin , PipeStdout , PipeStderr ] ;
1010 cwd ?: string ;
1111 env ?: { [ key :string ] : string ; } ;
@@ -52,7 +52,7 @@ export type PipeStderr = Pipe | NodeJS.WritableStream;
5252
5353export namespace Bluebird {
5454 interface Promise < T > extends _Promise < T > {
55- timeout ( number ) : Bluebird . Promise < T > ;
55+ timeout ( milliseconds : number ) : Bluebird . Promise < T > ;
5656 }
5757}
5858
Original file line number Diff line number Diff line change 1111 , "noImplicitReturns" : true
1212 , "noFallthroughCasesInSwitch" : true
1313 , "strictNullChecks" : true
14- , "noImplicitAny" : false
14+ , "noImplicitAny" : true
1515 , "noUnusedParameters" : false
1616 , "noImplicitThis" : true
1717 , "noLib" : false
You can’t perform that action at this time.
0 commit comments