Cómo establecer la entrada del tipo de tiempo en la hora actual en la inicialización

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