Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ interface pythonBridge extends Function {
export const pythonBridge: pythonBridge

export interface PythonBridgeOptions {
intepreter?: string;
python?: string;
stdio?: [PipeStdin, PipeStdout, PipeStderr];
cwd?: string;
env?: { [key:string]: string; };
Expand Down Expand Up @@ -52,7 +52,7 @@ export type PipeStderr = Pipe | NodeJS.WritableStream;

export namespace Bluebird {
interface Promise<T> extends _Promise<T> {
timeout(number): Bluebird.Promise<T>;
timeout(milliseconds: number): Bluebird.Promise<T>;
}
}

Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
, "noImplicitReturns": true
, "noFallthroughCasesInSwitch": true
, "strictNullChecks": true
, "noImplicitAny": false
, "noImplicitAny": true
, "noUnusedParameters": false
, "noImplicitThis": true
, "noLib": false
Expand Down