| 36 | export type Protocol = 'npm' | 'jsr' |
| 37 | |
| 38 | export interface RawDep { |
| 39 | name: string |
| 40 | currentVersion: string |
| 41 | source: DepType |
| 42 | update: boolean |
| 43 | parents?: string[] |
| 44 | protocol?: Protocol |
| 45 | hexHash?: string |
| 46 | } |
| 47 | |
| 48 | export type DiffType = 'major' | 'minor' | 'patch' | 'error' | null |
| 49 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…