shared.d.ts 568B

1234567891011121314151617181920212223242526272829
  1. export declare const chooseImageProps: {
  2. sizeType: {
  3. type: ArrayConstructor;
  4. value: string[];
  5. };
  6. capture: {
  7. type: ArrayConstructor;
  8. value: string[];
  9. };
  10. };
  11. export declare const chooseVideoProps: {
  12. capture: {
  13. type: ArrayConstructor;
  14. value: string[];
  15. };
  16. compressed: {
  17. type: BooleanConstructor;
  18. value: boolean;
  19. };
  20. maxDuration: {
  21. type: NumberConstructor;
  22. value: number;
  23. };
  24. camera: {
  25. type: StringConstructor;
  26. value: string;
  27. };
  28. };