Skip to content

Commit 5894cd0

Browse files
author
Ryan Munro
authored
Merge pull request #16 from Submersible/fix_12_14_integration
Integrate fixes for #14 #12
2 parents 0f9b1cc + bc75510 commit 5894cd0

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ interface pythonBridge extends Function {
55
export const pythonBridge: pythonBridge
66

77
export 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

5353
export 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

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
, "noImplicitReturns": true
1212
, "noFallthroughCasesInSwitch": true
1313
, "strictNullChecks": true
14-
, "noImplicitAny": false
14+
, "noImplicitAny": true
1515
, "noUnusedParameters": false
1616
, "noImplicitThis": true
1717
, "noLib": false

0 commit comments

Comments
 (0)