riku
2025-10-30 e9aa93f381afcf9f9cf0c39f2b9e32375ed49528
1
2
3
4
5
6
7
8
9
10
11
12
package cn.flightfeather.thirdappmodule.util.photo;
 
import java.io.File;
import java.util.List;
 
/**
 * 压缩完成监听接口
 */
public interface OnCompressListener {
 
    void onCompressed(List<File> files);
}