UNPKG

@adapty/capacitor

Version:
9 lines (8 loc) 243 B
import { Converter } from './types'; type Model = any; type Serialized = string; export declare class JSONCoder implements Converter<Model, Serialized> { decode(input: Serialized): Model; encode(value: Model): Serialized; } export {};