UNPKG

283 BTypeScriptView Raw
1import { IPropertyConverter, JsonValue } from "ta-json-x";
2export declare class JsonDateConverter implements IPropertyConverter {
3 serialize(property: Date | undefined): JsonValue;
4 deserialize(value: JsonValue): Date | undefined;
5 collapseArrayWithSingleItem(): boolean;
6}