onboardsync-react-native
Version:
Expo SDK for OnboardSync - Remote onboarding configuration platform with A/B testing
15 lines • 453 B
TypeScript
export interface OnboardSyncConfig {
projectId: string;
secretKey: string;
testingEnabled?: boolean;
onComplete?: () => void;
}
export interface ConfigResponse {
backendDomain: string;
}
export interface FlowResolutionResponse {
flowId: string;
}
export type PermissionType = 'camera' | 'photos' | 'location' | 'contacts' | 'notifications';
export type OnboardingCompleteCallback = () => void;
//# sourceMappingURL=types.d.ts.map