shared.d.ts 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. referrerPolicy: {
  33. type: StringConstructor;
  34. value: string;
  35. };
  36. };
  37. export declare const mediaProps: {
  38. capture: {
  39. type: ArrayConstructor;
  40. value: string[];
  41. };
  42. mediaType: {
  43. type: ArrayConstructor;
  44. value: string[];
  45. };
  46. maxDuration: {
  47. type: NumberConstructor;
  48. value: number;
  49. };
  50. camera: {
  51. type: StringConstructor;
  52. value: string;
  53. };
  54. };
  55. export declare const messageFileProps: {
  56. extension: null;
  57. };