import { Component, ChangeDetectionStrategy, Input } from '@angular/core'; export interface BsCustomDates { label: string; value: Date | Date[]; } @Component({ selector: 'bs-custom-date-view', template: `
`, changeDetection: ChangeDetectionStrategy.OnPush }) export class BsCustomDatesViewComponent { @Input() isCustomRangeShown: true; @Input() ranges: BsCustomDates[]; }