@authx/http-proxy-client
Advanced tools
Comparing version 3.1.0-alpha.5 to 3.1.0-alpha.6
/// <reference types="node" /> | ||
import EventEmitter from "events"; | ||
import { EventEmitter } from "events"; | ||
import { Server, IncomingMessage, ServerResponse } from "http"; | ||
@@ -4,0 +4,0 @@ import { ServerOptions } from "http-proxy"; |
@@ -8,3 +8,3 @@ "use strict"; | ||
const abort_controller_1 = __importDefault(require("abort-controller")); | ||
const events_1 = __importDefault(require("events")); | ||
const events_1 = require("events"); | ||
const node_fetch_1 = __importDefault(require("node-fetch")); | ||
@@ -25,3 +25,3 @@ const http_1 = require("http"); | ||
} | ||
class AuthXClientProxy extends events_1.default { | ||
class AuthXClientProxy extends events_1.EventEmitter { | ||
constructor(config) { | ||
@@ -28,0 +28,0 @@ super(); |
@@ -55,3 +55,3 @@ { | ||
"types": "./dist/index.d.ts", | ||
"version": "3.1.0-alpha.5" | ||
"version": "3.1.0-alpha.6" | ||
} |
import { createHash } from "crypto"; | ||
import AbortController from "abort-controller"; | ||
import EventEmitter from "events"; | ||
import { EventEmitter } from "events"; | ||
import fetch from "node-fetch"; | ||
@@ -5,0 +5,0 @@ import { createServer, Server, IncomingMessage, ServerResponse } from "http"; |
Sorry, the diff of this file is not supported yet
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
92898