| 82 | dbPassword?: string; |
| 83 | } |
| 84 | interface TopLevelDataFormat { |
| 85 | header: unknown; |
| 86 | parsedHeader: HeaderAttributes; |
| 87 | packages: unknown[]; |
| 88 | dependencies: unknown[]; |
| 89 | license_clues: LicenseClue[]; |
| 90 | license_detections: TopLevelLicenseDetection[]; |
| 91 | license_detections_map: Map<string, TopLevelLicenseDetection>; |
| 92 | license_references: LicenseReferenceAttributes[]; |
| 93 | license_references_map: Map<string, LicenseReferenceAttributes>; |
| 94 | license_references_spdx_map: Map<string, LicenseReferenceAttributes>; |
| 95 | license_rule_references: unknown[]; |
| 96 | todo: TodoAttributes[]; |
| 97 | } |
| 98 | export interface FileDataNode extends DataNode { |
| 99 | id: number; |
| 100 | path: string; |
nothing calls this directly
no outgoing calls
no test coverage detected