ngx-hijri-gregorian-datepicker
Version:
* Lightweight **Angular** datepicker based on [ng-bootstrap](https://ng-bootstrap.github.io/#/components/datepicker/overview) that supports **Gregorian** and **Hijri** calendars. * Provides ability to swap between **Gregorian** and **Hijri** calendars
9 lines (8 loc) • 346 B
TypeScript
import { NgbDateParserFormatter, NgbDateStruct } from '@ng-bootstrap/ng-bootstrap';
import { DatePipe } from '@angular/common';
export declare class CustomNgbDateParserFormatter extends NgbDateParserFormatter {
datePipe: DatePipe;
constructor();
format(date: NgbDateStruct): string;
parse(value: string): NgbDateStruct;
}