我正在尝试这样做,但它并没有像我期望的那样工作。
(我正在使用 AMD 选项)
//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
你是怎么做 logger.log() 的?