UNPKG

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