| 111 | } |
| 112 | |
| 113 | export interface SchemaModel { |
| 114 | name: string; |
| 115 | fields: SchemaField[]; |
| 116 | relations: string[]; |
| 117 | orm: ORM; |
| 118 | confidence?: DetectionMethod; |
| 119 | } |
| 120 | |
| 121 | export interface SchemaField { |
| 122 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected