| 1 | export interface EHTDatabase { |
| 2 | head: { |
| 3 | author: { |
| 4 | name: string; |
| 5 | email: string; |
| 6 | when: string; |
| 7 | }; |
| 8 | committer: { |
| 9 | name: string; |
| 10 | email: string; |
| 11 | when: string; |
| 12 | }; |
| 13 | sha: string; |
| 14 | message: string; |
| 15 | }; |
| 16 | version: number; |
| 17 | repo: string; |
| 18 | data: EHTNamespace[]; |
| 19 | } |
| 20 | |
| 21 | export type EHTNamespaceName = |
| 22 | | 'rows' |
nothing calls this directly
no outgoing calls
no test coverage detected