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