javascript - How to export and import at the same time in typescript - Stack Overflow

I want to import the model's interface and at the same time export the model interface from that f

I want to import the model's interface and at the same time export the model interface from that file.

I wrote the following code to import the model's interface and use it in that file and export that interface externally.

// api/service/post.interface.ts
export import { Post } from '../../model/interface/post.interface.ts; 
// -> An import declaration cannot have modifiers.

type PostPayload = Partial<Post>;

// api/service/post_create.ts
import { Post } from './post.interface'; 
// -> this path has no exported member 'Post'

const a = (title: Post['title']) => {
  ...
}

What did I make a mistake?

I want to import the model's interface and at the same time export the model interface from that file.

I wrote the following code to import the model's interface and use it in that file and export that interface externally.

// api/service/post.interface.ts
export import { Post } from '../../model/interface/post.interface.ts; 
// -> An import declaration cannot have modifiers.

type PostPayload = Partial<Post>;

// api/service/post_create.ts
import { Post } from './post.interface'; 
// -> this path has no exported member 'Post'

const a = (title: Post['title']) => {
  ...
}

What did I make a mistake?

Share asked Mar 4, 2020 at 10:43 COLEANCOLEAN 6952 gold badges13 silver badges24 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 9

You can't both import something to use locally and export it in a single declaration, they have to be separate ones:

import { Post } from '../../model/interface/post.interface.ts;
export { Post }; 

Although it's possible to re-export something in a single statement, like this:

export { Post } from '../../model/interface/post.interface.ts;

...it doesn't create a local binding you can use. It's just a re-export, not an import.

You "reexport" a name like this:

export { Post } from "../../model/interface/post.interface.ts";

Or even the default export of a module like this:

export { default } from "../../model/interface/somedefault.ts";

And even the default export under a new name:

export { default as Other name } from "../../model/interface/somedefault.ts";

But there is no syntax to import and export at the same time.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743689321a4490688.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信