@adapty/capacitor
Version:
Official Adapty SDK for Capacitor
11 lines (10 loc) • 444 B
TypeScript
import type { Def } from '../types/schema';
import type { Properties } from './types';
import { SimpleCoder } from './coder';
import { AdaptyUiOnboardingMeta } from '../../ui-builder/types';
type Model = AdaptyUiOnboardingMeta;
type Serializable = Def['AdaptyUI.OnboardingMeta'];
export declare class AdaptyUiOnboardingMetaCoder extends SimpleCoder<Model, Serializable> {
protected properties: Properties<Model, Serializable>;
}
export {};