UNPKG

@adapty/capacitor

Version:
10 lines (9 loc) 253 B
import type { Converter } from './types'; /** * Format: yyyy-MM-dd'T'HH:mm:ss.SSSZ * OpenAPI: Output.Date */ export declare class DateCoder implements Converter<Date, string> { decode(input: string): Date; encode(value: Date): string; }