shared.d.ts 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. export declare const imageProps: {
  2. sizeType: {
  3. type: ArrayConstructor;
  4. value: string[];
  5. };
  6. capture: {
  7. type: ArrayConstructor;
  8. value: string[];
  9. };
  10. showmenu: {
  11. type: BooleanConstructor;
  12. value: boolean;
  13. };
  14. };
  15. export declare const videoProps: {
  16. capture: {
  17. type: ArrayConstructor;
  18. value: string[];
  19. };
  20. compressed: {
  21. type: BooleanConstructor;
  22. value: boolean;
  23. };
  24. maxDuration: {
  25. type: NumberConstructor;
  26. value: number;
  27. };
  28. camera: {
  29. type: StringConstructor;
  30. value: string;
  31. };
  32. };
  33. export declare const mediaProps: {
  34. capture: {
  35. type: ArrayConstructor;
  36. value: string[];
  37. };
  38. mediaType: {
  39. type: ArrayConstructor;
  40. value: string[];
  41. };
  42. maxDuration: {
  43. type: NumberConstructor;
  44. value: number;
  45. };
  46. camera: {
  47. type: StringConstructor;
  48. value: string;
  49. };
  50. };
  51. export declare const messageFileProps: {
  52. extension: null;
  53. };