Como definir a entrada do tipo de tempo para o tempo atual na inicialização

this.createForm.patchValue({
    date: new Date(),
    time: new Date().getHours() + ':' + new Date().getMinutes()
  });
Hiren Vadher