UNPKG

@capgo/cli

Version:

A CLI to upload to capgo servers

11 lines (10 loc) 347 B
import type { FC } from 'react'; import type { OnboardingProgress } from '../types.js'; interface AppProps { appId: string; initialProgress: OnboardingProgress | null; /** Resolved iOS directory from capacitor.config (defaults to 'ios') */ iosDir: string; } declare const OnboardingApp: FC<AppProps>; export default OnboardingApp;