Skip to content

Commit 826380b

Browse files
committed
fix: cleanup types
1 parent ca17707 commit 826380b

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

packages/react-native-audio-api/src/plugin/withAudioAPI.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,7 @@ const withForegroundService: ConfigPlugin<Options> = (
8080
});
8181
};
8282

83-
const withAudioAPI: ConfigPlugin<{
84-
iosBackgroundMode?: boolean;
85-
androidForegroundService?: boolean;
86-
androidFSPermissions?: string[];
87-
androidFSTypes?: string[];
88-
}> = (config, optionsIn?: Partial<Options>) => {
83+
const withAudioAPI: ConfigPlugin<Options> = (config, optionsIn) => {
8984
const options = withDefaultOptions(optionsIn ?? {});
9085

9186
if (options.iosBackgroundMode) {

0 commit comments

Comments
 (0)