CodePlexProject Hosting for Open Source Software
An unexpected error has occured.
There is an unsaved comment in progress. You will lose your changes if you continue. Are you sure you want to reopen the work item?
Voted
export class Greeter {}
module.exports = Greeter; or exports = Greeter;
No files are attached
jonturner wrote Oct 4, 2012 at 3:07 AM
delaaxe wrote Oct 4, 2012 at 1:24 PM
KerstenB wrote Oct 4, 2012 at 1:48 PM
damassi wrote Oct 5, 2012 at 6:28 PM
rwaldron wrote Oct 6, 2012 at 11:02 PM
rwaldron wrote Oct 6, 2012 at 11:06 PM
rwaldron wrote Oct 6, 2012 at 11:19 PM
dcstraw wrote Oct 18, 2012 at 5:44 PM
rwaldron wrote Oct 18, 2012 at 6:38 PM
dcstraw wrote Oct 18, 2012 at 8:04 PM
dallonf wrote Nov 9, 2012 at 6:59 PM
damassi wrote Nov 12, 2012 at 12:21 AM
rwaldron wrote Nov 12, 2012 at 3:19 AM
LukeH wrote Nov 29, 2012 at 12:05 AM
EisenbergEffect wrote Jan 3 at 2:43 AM
LukeH wrote Jan 3 at 10:48 PM
EisenbergEffect wrote Jan 21 at 7:25 PM
TimSpeed wrote Mar 1 at 3:50 PM
export module "server" { export class ResponseHandler ... export class Server ... }
/// <reference path="./Net.Server.ts" /> /// <reference path="./Net.ResponseHandler.ts" /> export module "Net" { export var CONNECTION_TIMEOUT = 20000; }
/// <reference path="./node.d.ts" /> /// <reference path="./Net.ResponseHandler.ts" /> import http = module('http'); export module "Net" { export class Server ... }
LukeH wrote Mar 10 at 1:57 AM
blittle wrote Mar 25 at 8:07 PM
export class Telescope {}
import Telescope = module('Telescope'); var telescope = new Telescope.Telescope();
exports = class Telescope {}
import Telescope = module('Telescope'); var telescope = new Telescope();
PulsarBlow wrote Apr 13 at 1:06 AM
Scriby wrote Apr 17 at 4:11 AM
jonturner wrote Apr 26 at 9:52 PM
//fileA.ts class Telescope { ... } export = Telescope; //fileB.ts import Tele = require("fileA.ts"); var tele = new Tele();
anurse wrote May 16 at 6:37 PM
Sign in to add a comment or to set email notifications
Keyboard shortcuts are available for this page.