UNPKG

@adapty/capacitor

Version:
15 lines (14 loc) 710 B
import type { Event } from '../types/schema'; import type { OnboardingStateUpdatedAction } from '../../ui-builder/types'; import { SimpleCoder } from './coder'; import type { Properties } from './types'; type Model = OnboardingStateUpdatedAction; type BaseModel = Omit<Model, 'value'>; type Serializable = Event['OnboardingViewEvent.OnStateUpdatedAction']['action']; export declare class AdaptyUiOnboardingStateUpdatedActionCoder extends SimpleCoder<BaseModel, Serializable> { private readonly paramCoder; protected properties: Properties<BaseModel, Serializable>; decode(data: Serializable): OnboardingStateUpdatedAction; encode(data: OnboardingStateUpdatedAction): Serializable; } export {};