UNPKG

@capgo/cli

Version:
10 lines (9 loc) 392 B
import type { InitRuntimeState } from '../runtime'; import React from 'react'; interface InitInkAppProps { getSnapshot: () => InitRuntimeState; subscribe: (listener: () => void) => () => void; updatePromptError: (error?: string) => void; } export default function InitInkApp({ getSnapshot, subscribe, updatePromptError }: Readonly<InitInkAppProps>): React.JSX.Element; export {};