This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import AudioRecorderPlayer, { PlayBackType } from "react-native-audio-recorder-player"; | |
import { isIOS } from "utils/utils"; | |
type Callback = (args: { data?: PlayBackType; status: AudioStatus }) => void; | |
type Path = string | undefined; | |
export enum AudioStatus { | |
PAUSED = "PAUSED", | |
PLAYING = "PLAYING", | |
RESUMED = "RESUMED", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// <appname>-Bridging-Header.h <----- replace the app name with your app's name | |
// <appname> | |
// | |
// Created by Efstathios Ntonas on 2/2/24. | |
// | |
#ifndef <appname>_Bridging_Header_h | |
#define <appname>_Bridging_Header_h |
OlderNewer