2

正如我现在从打字稿中读到的那样,您可以像这样导出类:

// client.ts 
    class Client { 
        constructor(public name: string, public description: string) { } 
    } 
    export = Client; 

// app.ts 
import MyClient = require('./client'); 
var myClient = new MyClient("Joe Smith", "My #1 client");

但是,有没有办法导出接口?

现在我收到一条错误消息:

错误 TS1003:需要标识符。

当我尝试做这样的事情时:

// INotifier.ts
    interface INotifier {
        // code
    }
    export = INotifier;
4

1 回答 1

4

我已经在 Visual Studio 中尝试过这个,这对我有用,使用import语法(更新答案以反映 TypeScript 语言的变化):

文件1.ts

interface IPoint {
    getDist(): number;
}

export = IPoint;

应用程序.ts

// Obsolete syntax
//import example = module('file1');

// Newer syntax
import example = require('file1');

class Point implements example {
    getDist() {
        return 1;
    }
}

附加说明:在这种情况下,您将无法使用 ECMAScript 6 样式导入 - 因为它们仅适用于类和模块。

//Won't work because it resolves to a "non-module entity"
import * as example from 'file1';
于 2013-06-26T08:19:06.197 回答