используйте myFilter в качестве следующего кода:
myFilter = (d: Date): boolean => {
const testDates: Date[] = [
new Date('2018-08-30T00:00:00+02:00'),
new Date('2018-08-28T00:00:00+02:00'),
new Date('2018-08-21T00:00:00+02:00'),
new Date('2018-08-23T00:00:00+02:00')
]
return testDates.findIndex(testDate => d.toDateString() == testDate.toDateString()) >= 0;
}