MCPcopy
hub / github.com/firecrawl/open-lovable / CodeApplicationState

Interface CodeApplicationState

components/CodeApplicationProgress.tsx:4–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import { motion, AnimatePresence } from 'framer-motion';
3
4export interface CodeApplicationState {
5 stage: 'analyzing' | 'installing' | 'applying' | 'complete' | null;
6 packages?: string[];
7 installedPackages?: string[];
8 filesGenerated?: string[];
9 message?: string;
10}
11
12interface CodeApplicationProgressProps {
13 state: CodeApplicationState;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected