I'm trying to do this, but it's not working like I'd expect.
(I'm using the AMD option)
//logger.ts
export class Logger {
static log(message: string) {
//do stuff
}
}
//main.ts
import logger = module('services/logger');
logger.log("test"); //The property 'log' does not exist on value of type '"logger"'
logger.Logger.log(); //works
How do you do logger.log()?