Categories
TypeScript Answers

How to import moment.js with TypeScript?

Spread the love

Sometimes, we want to import moment.js with TypeScript.

In this article, we’ll look at how to import moment.js with TypeScript.

How to import moment.js with TypeScript?

To import moment.js with TypeScript, we can import the whole package with import.

To import moment.js, we write

import * as moment from "moment";

to import the 'moment' module as moment.

Conclusion

To import moment.js with TypeScript, we can import the whole package with import.

By John Au-Yeung

Web developer specializing in React, Vue, and front end development.

Leave a Reply

Your email address will not be published. Required fields are marked *