I recently integrated moment into my Angular2 application, and encountered an issue when attempting to assign the date of this week's Saturday to a variable of type date,
case "weekend":
this.fromDate = moment().startOf('week');
An error was displayed stating,
Type 'Moment' is not assignable to type 'Date'. Property 'toDateString' is missing in type 'Moment'
To resolve this, I imported moment into my component using the following line of code,
import * as moment from 'moment/moment';