1 package leakcanary
2 
3 import shark.HeapAnalysis
4 
5 /**
6  * Reports the results of a heap analysis created by [AndroidDetectLeaksAssert].
7  */
interfacenull8 fun interface HeapAnalysisReporter {
9   fun reportHeapAnalysis(heapAnalysis: HeapAnalysis)
10 }
11