UNPKG

ferngully-aurelia-tools

Version:

Ferngully Tools for Aurelia

8 lines (7 loc) 353 B
import { DateService, IFormatParameters } from "../../services/date-service"; export declare class DateValueConverter { private dateService; constructor(dateService: DateService); toView(value: Date, format?: IFormatParameters | string): string | null; fromView(value: string, format?: IFormatParameters | string): Date | null; }