systelab-components
Version:
systelab-components is a set of components that use wide accepted and adopted standard technologies like Angular and Bootstrap, as well as other popular libraries. Please read the ATTRIBUTION.md file for a complete list of dependencies.
18 lines (17 loc) • 970 B
TypeScript
import { EventEmitter } from '@angular/core';
import * as i0 from "@angular/core";
export declare class DateRangepicker {
private _fromDate;
private _toDate;
minDate: Date;
maxDate: Date;
disabled: boolean;
get fromDate(): Date;
set fromDate(value: Date);
get toDate(): Date;
set toDate(value: Date);
toDateChange: EventEmitter<Date>;
fromDateChange: EventEmitter<Date>;
static ɵfac: i0.ɵɵFactoryDeclaration<DateRangepicker, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangepicker, "systelab-date-range-picker", never, { "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "fromDate": { "alias": "fromDate"; "required": false; }; "toDate": { "alias": "toDate"; "required": false; }; }, { "toDateChange": "toDateChange"; "fromDateChange": "fromDateChange"; }, never, never, false, never>;
}