i have this module:
module Net.Server {
var socket:dgram.Socket;
[...]
}
and this app.ts:
var server:Net.Server = new Server();
if i write this line at the beginning of the first file:
import dgram = require("dgram")
the compiler does not found the type 'Net.Server', why?