迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > TypeScript >

如何在 TypeScript 中导出多个接口

作者:迹忆客 最近更新:2022/11/26 浏览次数:

使用命名导出在 TypeScript 中导出多个接口,例如 export interface A {}export interface B {}。 可以使用命名导入导入导出的接口,如 import {A, B} from './another-file'。 我们可以在单个文件中根据需要拥有尽可能多的命名导出。

下面是从名为 another-file.ts 的文件中导出多个接口的示例。

another-file.ts

// 👇️ named export
export interface Employee {
  id: number;
  salary: number;
}

// 👇️ named export
export interface Person {
  name: string;
}

请注意 ,在接口定义所在的同一行使用 export 与在声明接口后将接口导出为对象相同。

another-file.ts

interface Employee {
  id: number;
  salary: number;
}

interface Person {
  name: string;
}

// 👇️ named exports
export { Employee, Person };

以下是我们如何将接口导入名为 index.ts 的文件中。

// 👇️ named imports
import { Employee, Person } from './another-file';

const employee: Employee = {
  id: 1,
  salary: 100,
};

const person: Person = {
  name: 'James',
};

如果必须,请确保更正指向另一个文件模块的路径。上面的示例假定 another-file.ts 和 index.ts 位于同一目录中。

例如,如果您从一个目录向上导入,您可以从 '../another-file' 导入 {Employee, Person}。

我们在导入时将接口的名称用大括号括起来——这称为命名导入。

TypeScript 使用模块的概念,就像 JavaScript 一样。

为了能够从不同的文件导入接口,必须使用命名或默认导出来导出它。

上面的示例使用命名导出和命名导入。

命名和默认导出和导入之间的主要区别是 - 每个文件可以有多个命名导出,但只能有一个默认导出。

如果您尝试在单个文件中使用多个默认导出(用于函数、类、变量),则会出现错误。

但是,如果我们使用多个默认导出从同一个文件导出接口,接口将被合并。

another-file.ts

// 👇️ default export
export default interface Employee {
  id: number;
  salary: number;
}

// 👇️ default export
export default interface Person {
  name: string;
}

这是导入合并接口的方法。

// 👇️ default import
import Employee from './another-file';

const employee: Employee = {
  id: 1,
  name: 'Tom',
  salary: 100,
};

请注意 ,Employee 接口现在同时具有 Employee 和 Person 的属性。

你应该避免使用这种模式,因为它很容易混淆。

根据经验,大多数真实世界的代码库只使用命名导出和导入,因为它们可以更轻松地利用 IDE 进行自动完成和自动导入。

我们也不必考虑使用默认导出或命名导出导出哪些成员。

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

在 TypeScript 中返回一个 Promise

发布时间:2023/03/19 浏览次数:182 分类:TypeScript

本教程讨论如何在 TypeScript 中返回正确的 Promise。这将提供 TypeScript 中 Returns Promise 的完整编码示例,并完整演示每个步骤。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便