revel-mat-daterange-picker-up2
Version:
[](https://circleci.com/gh/ashishgkwd/ngx-mat-daterange-picker) [](https
17 lines (16 loc) • 620 B
TypeScript
import { InjectionToken } from '@angular/core';
import { Range } from '../model/model';
import { Subject } from 'rxjs';
import * as i0 from "@angular/core";
export declare const DATE: InjectionToken<Date>;
export declare class RangeStoreService {
private _fromDate;
private _toDate;
rangeUpdate$: Subject<Range>;
constructor(_fromDate: Date, _toDate: Date);
get fromDate(): Date;
get toDate(): Date;
updateRange(fromDate?: Date, toDate?: Date): void;
static ɵfac: i0.ɵɵFactoryDeclaration<RangeStoreService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<RangeStoreService>;
}