ngx-bootstrap
Version:
Native Angular Bootstrap Components
15 lines (14 loc) • 696 B
TypeScript
import { OnInit, OnDestroy } from '@angular/core';
import { BsDatePickerOptions } from './common/bs-date-picker-options.provider';
import { BsCalendarOptionsClass } from './common/bs-calendar-options.provider';
import { BsDatePickerState } from './common/bs-date-picker-state.provider';
export declare class BsDatePickerViewComponent implements OnInit, OnDestroy {
isShown: boolean;
options: BsDatePickerOptions;
cOptions: BsCalendarOptionsClass;
bsRole: string;
private _subscription;
constructor(datePickerState: BsDatePickerState, datePickerOptions: BsDatePickerOptions, cOptions: BsCalendarOptionsClass);
ngOnInit(): void;
ngOnDestroy(): void;
}