Skip to content

Commit

Permalink
feat(bluetooth-classic-serial-port): add method initialize (#4847)
Browse files Browse the repository at this point in the history
* feat(bluetooth-classic-serial-port): add method initialize

* Update index.ts
  • Loading branch information
MaximBelov authored Oct 13, 2024
1 parent 4e817a9 commit e830259
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,16 @@ export interface BluetoothClassicSerialPortDevice {
})
@Injectable()
export class BluetoothClassicSerialPort extends AwesomeCordovaNativePlugin {
/**
* Initialize
*/
@Cordova({
platforms: ['Android', 'iOS'],
})
initialize(): Promise<any> {
return;
}

/**
* Connect to a Bluetooth device
*
Expand Down

0 comments on commit e830259

Please sign in to comment.