Typescript export generic type

Typescript export generic type

Last updated: Jan 23, 2023
Reading time · 5 min

banner

# Table of Contents

# Export an Interface in TypeScript

Use a named export to export an interface in TypeScript, e.g. export interface Person<> .

The exported interface can be imported by using a named import as import from ‘./another-file’ .

You can have as many named exports as necessary in a single file.

Here is an example of exporting an interface from a file called another-file.ts .

Copied!
// 👇️ named export export interface Person name: string; country: string; >

Note that using export on the same line as the interface’s definition is the same as exporting the interface as an object after it has been declared.

Copied!
interface Person name: string; country: string; > // 👇️ named export export Person >;

Here is how we would import the interface in a file called index.ts .

Copied!
import Person > from './another-file'; const person: Person = name: 'Bobby Hadz', country: 'Germany', >;

Make sure to correct the path that points to the another-file module if you have to.

The example above assumes that another-file.ts and index.ts are located in the same directory.

For example, if you were importing from one directory up, you would do import from ‘../another-file’ .

The same syntax is used to import multiple interfaces from the same file, you just have to separate the interfaces by a comma.

Copied!
import Person, Employee> from './another-file'

We wrapped the name of the interface in curly braces when importing them — this is called a named import.

TypeScript uses the concept of modules, in the same way that JavaScript does.

In order to be able to import an interface from a different file, it has to be exported using a named or default export.

The example above uses named exports and named imports.

The main difference between named and default exports and imports is that you can have multiple named exports per file, but you can only have a single default export.

If you try to use multiple default exports (for functions, classes, variables) in a single file, you would get an error.

# Using multiple default exports to export interfaces from the same file

However, if you use multiple default exports to export interfaces from the same file, the interfaces would get merged.

Copied!
// 👇️ default export export default interface Employee id: number; salary: number; > // 👇️ default export export default interface Person name: string; >

And here is how you would import the merged interface.

Copied!
// 👇️ default import import Employee from './another-file'; const employee: Employee = id: 1, name: 'Bobby Hadz', salary: 1447, >;

Notice that the Employee interface now has the properties of both Employee and Person .

You should avoid using this pattern as it is confusing.

In my experience, most real-world codebases exclusively use named exports and imports, because they make it easier to leverage your IDE for auto-completion and auto-imports.

You also don’t have to think about which members are exported with a default or named export.

# Export a Type in TypeScript

Use a named export to export a type in TypeScript, e.g. export type Person = <> .

The exported type can be imported by using a named import as import from ‘./another-file’ .

You can have as many named exports as necessary in a single file.

Here is an example of exporting a type from a file called another-file.ts .

Copied!
// 👇️ named export export type Person = name: string; country: string; >;

Note that using export on the same line as the type’s definition is the same as exporting the type as an object after it has been declared.

Copied!
type Person = name: string; country: string; >; // 👇️ named export export Person >;

Here is how we would import the type in a file called index.ts .

Copied!
// 👇️ named import import Person > from './another-file'; const person: Person = name: 'Bobby Hadz', country: 'Germany', >;

Make sure to correct the path that points to the another-file module if you have to.

The example above assumes that another-file.ts and index.ts are located in the same directory.

For example, if you were importing from one directory up, you would do import from ‘../another-file’ .

The same syntax is used to import multiple types from the same file, you just have to separate the types by a comma.

Copied!
import Person, Employee> from './another-file'

TypeScript uses the concept of modules, in the same way that JavaScript does.

In order to be able to import a type from a different file, it has to be exported using a named or default export.

The example above uses named exports and named imports.

The main difference between named and default exports and imports is that you can have multiple named exports per file, but you can only have a single default export.

If you try to use multiple default exports in a single file, you would get an error.

Copied!
type Person = name: string; country: string; >; type Employee = id: number; salary: number; >; // ⛔️ Error export default Person; export default Employee;

IMPORTANT: If you are exporting a type, or a variable (or an arrow function) as a default export, you have to declare it on 1 line and export it on the next.

You can’t declare and default export a variable on the same line.

Having said that, you can use 1 default export and as many named exports as you need in a single file.

# Exporting types using a default and named exports

Let’s look at an example that exports types and uses both — default and named exports.

Copied!
// 👇️ named export export type Person = name: string; country: string; >; type Employee = id: number; salary: number; >; // 👇️ default export export default Employee;

And here is how you would import the two types.

Copied!
// 👇️ default and named imports import Employee, Person > from './another-file'; const person: Person = name: 'Bobby Hadz', country: 'Germany', >; const employee: Employee = id: 1, salary: 200, >;

Notice that we didn’t wrap the default import in curly braces.

We used a default import to import the Employee type and a named import to import the Person type.

You can only have a single default export per file, but you can have as many named exports as necessary.

In my experience, most real-world codebases exclusively use named exports and imports, because they make it easier to leverage your IDE for auto-completion and auto-imports.

You also don’t have to think about which members are exported with a default or named export.

# Additional Resources

You can learn more about the related topics by checking out the following tutorials:

I wrote a book in which I share everything I know about how to become a better, more efficient programmer.

Источник

Читайте также:  Регулярное выражение для даты php
Оцените статью