Hi, I'm trying to import moment-timezone to my app,
I did used typings to install moment-timezone by running this command:typings install moment-timezone --ambient --save
and import to my page:
import * as moment from 'moment';
import 'moment-timezone';Moment works but when I call moment.tz, it shows property tz not found.
I found solution, run
typings install moment-node --save --ambientwill solve the problem.
npm install @types/moment-timezone --save-dev