History rows pre-populated on first load. Oldest first visually (array index 0 = top row).
| 164 | |
| 165 | /** History rows pre-populated on first load. Oldest first visually (array index 0 = top row). */ |
| 166 | interface Generation { |
| 167 | id: number; |
| 168 | profileName: string; |
| 169 | text: string; |
| 170 | language: string; |
| 171 | engine: string; |
| 172 | duration: string; |
| 173 | timeAgo: string; |
| 174 | favorited: boolean; |
| 175 | versions: number; |
| 176 | } |
| 177 | |
| 178 | const INITIAL_GENERATIONS: Generation[] = [ |
| 179 | { |
nothing calls this directly
no outgoing calls
no test coverage detected