You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
568 B

1 year ago
  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. };