admin管理员组文章数量:1344310
I'm wondering if it's possible to export a namespace from one typescript .d.ts file and then import that namespace into another .d.ts file where it gets used inside of a namespace.
Example:
namespace_export.d.ts
export namespace Foo {
interface foo {
prop1: string;
}
}
types.d.ts
import { Foo } from './namespace_export'
export namespace Types {
Foo // <-- This doesn't work but is what I would like
interface Bar {
prop2: string
}
}
testfile.ts
import { Types } from './types'
function testTypes(type: Types.Foo.foo) {
console.log(type);
}
I'm wondering if it's possible to export a namespace from one typescript .d.ts file and then import that namespace into another .d.ts file where it gets used inside of a namespace.
Example:
namespace_export.d.ts
export namespace Foo {
interface foo {
prop1: string;
}
}
types.d.ts
import { Foo } from './namespace_export'
export namespace Types {
Foo // <-- This doesn't work but is what I would like
interface Bar {
prop2: string
}
}
testfile.ts
import { Types } from './types'
function testTypes(type: Types.Foo.foo) {
console.log(type);
}
Share
Improve this question
asked Jul 29, 2017 at 22:09
Jon LambJon Lamb
1,4732 gold badges17 silver badges30 bronze badges
1 Answer
Reset to default 12I was wondering how to achieve this too. I found this solution:
import { Foo as fooAlias } from './namespace_export'
export namespace Types {
export import Foo = fooAlias;
interface Bar {
prop2: string
}
}
Hope this helps ;)
本文标签: javascriptTypescriptImport Namespace Into Another NamespaceStack Overflow
版权声明:本文标题:javascript - Typescript - Import Namespace Into Another Namespace - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743753294a2533048.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论