| 156 | } |
| 157 | |
| 158 | export interface CrosstabStep { |
| 159 | id: string |
| 160 | stepType: 'metadata' | 'horizontal' | 'vertical' | 'values' |
| 161 | stepName: string |
| 162 | description: string |
| 163 | prompt: string |
| 164 | response?: string |
| 165 | isCompleted: boolean |
| 166 | timestamp: number |
| 167 | } |
| 168 | |
| 169 | export interface CrosstabData { |
| 170 | metadata: CrosstabMetadata | null |
nothing calls this directly
no outgoing calls
no test coverage detected