@adapty/capacitor
Version:
Official Adapty SDK for Capacitor
12 lines (11 loc) • 474 B
TypeScript
import type { AdaptyPaywallProduct } from '../types';
import type { Def } from '../types/schema';
import type { Properties } from './types';
import { SimpleCoder } from './coder';
type Model = AdaptyPaywallProduct;
type Serializable = Def['AdaptyPaywallProduct.Response'];
export declare class AdaptyPaywallProductCoder extends SimpleCoder<Model, Serializable> {
protected properties: Properties<Model, Serializable>;
getInput(data: Serializable): any;
}
export {};