Skip to content

Commit

Permalink
fix typings again
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Cazala committed Dec 9, 2017
1 parent 6d1571c commit ef074f5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Miner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
StratumRequestParams,
StratumError,
StratumJob
} from "src/types";
} from "./types";

export type Options = {
connection: Connection | null;
Expand Down
2 changes: 1 addition & 1 deletion src/Proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
AuthedEvent,
OpenEvent,
Credentials
} from "src/types";
} from "./types";
import { ServerRequest } from "http";

export type Options = {
Expand Down
2 changes: 1 addition & 1 deletion src/Queue.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as EventEmitter from "events";
import { QueueMessage } from "src/types";
import { QueueMessage } from "./types";

class Queue extends EventEmitter {
events: QueueMessage[] = [];
Expand Down
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"stripInternal": true,
"pretty": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"lib": ["es5", "es2017"],
"types": ["node"],
"declaration": true,
Expand Down

0 comments on commit ef074f5

Please sign in to comment.