Only instance members of the components class can be called from the view.
If you want to call static members, you need to provide a getter in the component.
export class MyComponent {
parseDate = DateService.parseDate;
}
then you can use it like
(input)="event.date=parseDate($event.target.value)"