lmw
2025-01-10 601f14db94013373df700e007095f7f2f5ecbe24
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ypx.imagepicker.data;
 
import androidx.annotation.Nullable;
 
import com.ypx.imagepicker.bean.ImageItem;
 
public interface ICameraExecutor {
 
    void takePhoto();
 
    void takeVideo();
 
    void onTakePhotoResult(@Nullable ImageItem imageItem);
}