shared.d.ts 931 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. };
  29. export declare const chooseMediaProps: {
  30. capture: {
  31. type: ArrayConstructor;
  32. value: string[];
  33. };
  34. mediaType: {
  35. type: ArrayConstructor;
  36. value: string[];
  37. };
  38. maxDuration: {
  39. type: NumberConstructor;
  40. value: number;
  41. };
  42. camera: {
  43. type: StringConstructor;
  44. value: string;
  45. };
  46. };