My TSLint is flagging the following issue:
Multiple imports from 'moment' can be combined into one.
Here is the code causing the problem:
import * as moment from 'moment';
import { Moment } from 'moment';
I have attempted various solutions without success (I couldn't find a relevant example in the documentation):
import * as moment, { Moment } from 'moment';
import { * as moment, Moment } from 'moment';
import { * as moment, Moment as Moment } from 'moment';