@adapty/capacitor
Version:
Official Adapty SDK for Capacitor
13 lines (12 loc) • 504 B
TypeScript
import type { AdaptyPurchaseResult } from '../types';
import type { Def } from '../types/schema';
import type { Properties } from './types';
import { SimpleCoder } from './coder';
type Model = AdaptyPurchaseResult;
type Serializable = Def['AdaptyPurchaseResult'];
export declare class AdaptyPurchaseResultCoder extends SimpleCoder<Model, Serializable> {
protected properties: Properties<Model, Serializable>;
decode(data: Serializable): Model;
encode(data: Model): Serializable;
}
export {};