2015-08-14 65 views

回答

1

不能在內部模塊使用環境的接口,所以在不同的文件中聲明的接口:

interface IFoo { 
    methodX(): string; 
} 

interface Window { 
    foo: IFoo; 
} 
相關問題