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