UNPKG

ngx-daterangepicker-bootstrap

Version:
26 lines (25 loc) 622 B
import { InjectionToken } from '@angular/core'; export declare const LOCALE_CONFIG: InjectionToken<LocaleConfig>; /** * LocaleConfig Interface */ 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; startDate?: string; endDate?: string; } /** * DefaultLocaleConfig */ export declare const DefaultLocaleConfig: LocaleConfig;