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
.