import { Component, OnInit, AfterViewInit } from '@angular/core'; @Component({ template: ` ` }) export class DateTimePickerExample implements OnInit { date: Date = new Date(); settings = { bigBanner: true, timePicker: true, format: 'dd-MM-yyyy hh:mm', defaultOpen: true } constructor(){ } ngOnInit(){ } }