Skip to content

Commit 1f6af72

Browse files
committed
refactor: moved context to public scope
1 parent ce24d2d commit 1f6af72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-native-audio-api/src/core/BaseAudioContext.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { InvalidAccessError, NotSupportedError } from '../errors';
1919
export default class BaseAudioContext {
2020
readonly destination: AudioDestinationNode;
2121
readonly sampleRate: number;
22-
protected readonly context: IBaseAudioContext;
22+
readonly context: IBaseAudioContext;
2323

2424
constructor(context: IBaseAudioContext) {
2525
this.context = context;

0 commit comments

Comments
 (0)