微信小程序
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
568 B

  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. };