| 42 | type EntryCallback = (event: string) => void; |
| 43 | |
| 44 | interface Entry extends SafeWatcher { |
| 45 | callbacks: Set<EntryCallback>; |
| 46 | rewatch: () => void; |
| 47 | release: (callback: EntryCallback) => void; |
| 48 | } |
| 49 | |
| 50 | const entries: Record<string, Entry | null> = Object.create(null); |
| 51 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…