@capgo/cli
Version:
A CLI to upload to capgo servers
9 lines (8 loc) • 387 B
TypeScript
import type { InitRuntimeState } from '../runtime';
interface InitInkAppProps {
getSnapshot: () => InitRuntimeState;
subscribe: (listener: () => void) => () => void;
updatePromptError: (error?: string) => void;
}
export default function InitInkApp({ getSnapshot, subscribe, updatePromptError }: Readonly<InitInkAppProps>): import("react/jsx-runtime").JSX.Element;
export {};