lmw
2024-11-20 ec282d9bf134fbda578ff901e4a620222a851d3f
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);
}