mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-30 11:14:27 +08:00
Merge pull request #5678 from scottopell/master
update module import style for ts1.5
This commit is contained in:
Vendored
+3
-3
@@ -6,9 +6,9 @@
|
||||
/// <reference path="../node/node.d.ts" />
|
||||
|
||||
declare module "ws" {
|
||||
import events = require('events');
|
||||
import http = require('http');
|
||||
import net = require('net');
|
||||
import * as events from 'events';
|
||||
import * as http from 'http';
|
||||
import * as net from 'net';
|
||||
|
||||
class WebSocket extends events.EventEmitter {
|
||||
static CONNECTING: number;
|
||||
|
||||
Reference in New Issue
Block a user