| 196 | |
| 197 | /** Cells are raw CSV strings keyed by DbField.id. */ |
| 198 | export interface DbRow { |
| 199 | /** == cells[idFieldId]. */ |
| 200 | id: string |
| 201 | cells: Record<string, string> |
| 202 | } |
| 203 | |
| 204 | /** Fully-hydrated database handed to the renderer (sidecar + rows + identity). */ |
| 205 | export interface DatabaseDoc extends DatabaseSidecar { |
nothing calls this directly
no outgoing calls
no test coverage detected