UNPKG

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