微信小程序
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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