UNPKG

angular-l10n

Version:

An Angular library to translate messages, dates and numbers

9 lines (8 loc) 425 B
import { PipeTransform } from '@angular/core'; import { LocaleService } from '../services/locale.service'; import { DateTimeOptions } from '../models/types'; export declare class L10nDatePipe implements PipeTransform { protected locale: LocaleService; constructor(locale: LocaleService); transform(value: any, defaultLocale: string, format?: string | DateTimeOptions, timezone?: string): string | null; }