takePhoto.d.ts 192 B

12345678910
  1. declare function takePhoto(): Promise<{
  2. path: string;
  3. }>;
  4. declare namespace takePhoto {
  5. var version: {
  6. android: string;
  7. ios: string;
  8. };
  9. }
  10. export default takePhoto;