Welcome to this tutorial! Our goal today is to understand how to export and import functions, classes, and interfaces in TypeScript. These aspects are crucial in creating reusable, clean, and maintainable code by allowing us to break our code into modular chunks.
By the end of this tutorial, you will learn how to:
To make the most out of this tutorial, you should have a basic understanding of TypeScript and its syntax.
In TypeScript, export
and import
are the two operators that allow us to create modular code. We use export
to make parts of our code available for use in other files, and import
to bring those exported parts into the current file.
To export a function, class, or interface, we use the export
keyword. Here's how to do it:
// Exporting a function
export function add(a: number, b: number): number {
return a + b;
}
// Exporting a class
export class MyClass {
constructor(private name: string) {}
greet() {
return `Hello, ${this.name}!`;
}
}
// Exporting an interface
export interface MyInterface {
name: string;
age: number;
}
To import the exported functions, classes, or interfaces, we use the import
keyword. Here's how to do it:
// Importing a function
import { add } from './myModule';
// Importing a class
import { MyClass } from './myModule';
// Importing an interface
import { MyInterface } from './myModule';
Now let's see some practical examples.
// myModule.ts
export function add(a: number, b: number): number {
return a + b;
}
// main.ts
import { add } from './myModule';
console.log(add(10, 20)); // This will output 30
In myModule.ts
, we defined and exported a function add
. Then, in main.ts
, we imported the add
function and used it.
// myModule.ts
export class MyClass {
constructor(private name: string) {}
greet() {
return `Hello, ${this.name}!`;
}
}
// main.ts
import { MyClass } from './myModule';
const myInstance = new MyClass('John');
console.log(myInstance.greet()); // This will output 'Hello, John!'
In this example, we exported a MyClass
class. We then imported the class in main.ts
, created an instance of it, and used its greet
method.
// myModule.ts
export interface MyInterface {
name: string;
age: number;
}
// main.ts
import { MyInterface } from './myModule';
let person: MyInterface = {name: 'John', age: 25};
console.log(person); // This will output { name: 'John', age: 25 }
In this example, we created an interface MyInterface
and exported it. We then imported it in main.ts
and created a person
object of type MyInterface
.
In this tutorial, we've covered the basics of exporting and importing functions, classes, and interfaces in TypeScript. We've learned how to use export
to make parts of our code available for use in other files, and import
to bring those exported parts into the current file.
To learn more about TypeScript, you can check the official TypeScript documentation.
Create a module that exports a function, a class, and an interface. Then, import them in another module and use them.
Create a module that exports multiple functions and classes. Then, import them in another module using import *
.
Create a module that exports a default function or class. Then, import it in another module without using curly braces.
Solutions and explanations for these exercises can be found in the official TypeScript documentation. After completing these exercises, you can practice more by creating your own modules and importing them in different parts of your application.