| 4 | import { Hash } from "crypto"; |
| 5 | type directoryItem = [string, "file" | "directory" | "link" | "screen", number, number, Stats]; |
| 6 | interface directoryList extends Array<directoryItem> { |
| 7 | [key:number]: directoryItem; |
| 8 | } |
| 9 | interface diffStore { |
| 10 | diff: directoryList; |
| 11 | source: directoryList; |
nothing calls this directly
no outgoing calls
no test coverage detected