ngx-daterangepicker-material
Version:
Angular 9 and 10 date range picker (with material design theme)
19 lines (18 loc) • 527 B
TypeScript
import { InjectionToken } from '@angular/core';
export declare const LOCALE_CONFIG: InjectionToken<LocaleConfig>;
export interface LocaleConfig {
direction?: string;
separator?: string;
weekLabel?: string;
applyLabel?: string;
cancelLabel?: string;
clearLabel?: string;
customRangeLabel?: string;
daysOfWeek?: string[];
monthNames?: string[];
firstDay?: number;
format?: string;
displayFormat?: string;
locale?: any;
}
export declare const DefaultLocaleConfig: LocaleConfig;