15 lines
323 B
Objective-C
15 lines
323 B
Objective-C
// ReactNativeVolumeController
|
|
//
|
|
// Created by Tyler Malone on 03/18/19
|
|
// Copyright © 2019. All rights reserved.
|
|
//
|
|
|
|
#import <React/RCTBridgeModule.h>
|
|
#import <React/RCTEventEmitter.h>
|
|
|
|
@interface RNVolumeControl : RCTEventEmitter <RCTBridgeModule>
|
|
|
|
- (void)initVolumeView;
|
|
- (void)setVolume:(float)volumeValue;
|
|
@end
|