shootVideo.d.ts 195 B

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