@@ -11,39 +11,44 @@ class NavigatorImpl implements Navigator {
1111 serviceWorker : ServiceWorkerContainer ;
1212 userActivation : UserActivation ;
1313 wakeLock : WakeLock ;
14- canShare ( data ?: ShareData ) : boolean {
14+
15+ canShare ( _data ?: ShareData ) : boolean {
1516 throw new Error ( 'Method not implemented.' ) ;
1617 }
1718 getGamepads ( ) : Gamepad [ ] {
1819 throw new Error ( 'Method not implemented.' ) ;
1920 }
20- requestMIDIAccess ( options ?: MIDIOptions ) : Promise < MIDIAccess > {
21+ requestMIDIAccess ( _options ?: MIDIOptions ) : Promise < MIDIAccess > {
2122 throw new Error ( 'Method not implemented.' ) ;
2223 }
2324 requestMediaKeySystemAccess ( keySystem : string , supportedConfigurations : MediaKeySystemConfiguration [ ] ) : Promise < MediaKeySystemAccess > ;
2425 requestMediaKeySystemAccess ( keySystem : string , supportedConfigurations : Iterable < MediaKeySystemConfiguration > ) : Promise < MediaKeySystemAccess > ;
25- requestMediaKeySystemAccess ( keySystem : unknown , supportedConfigurations : unknown ) : Promise < MediaKeySystemAccess > {
26+ requestMediaKeySystemAccess ( _keySystem : unknown , _supportedConfigurations : unknown ) : Promise < MediaKeySystemAccess > {
2627 throw new Error ( 'Method not implemented.' ) ;
2728 }
28- sendBeacon ( url : string | URL , data ?: BodyInit ) : boolean {
29+ sendBeacon ( _url : string | URL , _data ?: BodyInit ) : boolean {
2930 throw new Error ( 'Method not implemented.' ) ;
3031 }
31- share ( data ?: ShareData ) : Promise < void > {
32+ share ( _data ?: ShareData ) : Promise < void > {
3233 throw new Error ( 'Method not implemented.' ) ;
3334 }
3435 vibrate ( pattern : VibratePattern ) : boolean ;
3536 vibrate ( pattern : Iterable < number > ) : boolean ;
36- vibrate ( pattern : unknown ) : boolean {
37+ vibrate ( _pattern : unknown ) : boolean {
3738 throw new Error ( 'Method not implemented.' ) ;
3839 }
40+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
3941 mozGetVRDevices : ( any : any ) => any ;
40- webkitGetUserMedia ( constraints : MediaStreamConstraints , successCallback : any , errorCallback : any ) : void {
42+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
43+ webkitGetUserMedia ( _constraints : MediaStreamConstraints , _successCallback : any , _errorCallback : any ) : void {
4144 throw new Error ( 'Method not implemented.' ) ;
4245 }
43- mozGetUserMedia ( constraints : MediaStreamConstraints , successCallback : any , errorCallback : any ) : void {
46+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
47+ mozGetUserMedia ( _constraints : MediaStreamConstraints , _successCallback : any , _errorCallback : any ) : void {
4448 throw new Error ( 'Method not implemented.' ) ;
4549 }
46- msGetUserMedia ( constraints : MediaStreamConstraints , successCallback : any , errorCallback : any ) : void {
50+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
51+ msGetUserMedia ( _constraints : MediaStreamConstraints , _successCallback : any , _errorCallback : any ) : void {
4752 throw new Error ( 'Method not implemented.' ) ;
4853 }
4954 webkitGetGamepads ( ) : Gamepad [ ] {
@@ -82,10 +87,10 @@ class NavigatorImpl implements Navigator {
8287 clearAppBadge ( ) : Promise < void > {
8388 throw new Error ( 'Method not implemented.' ) ;
8489 }
85- setAppBadge ( contents ?: number ) : Promise < void > {
90+ setAppBadge ( _contents ?: number ) : Promise < void > {
8691 throw new Error ( 'Method not implemented.' ) ;
8792 }
88- registerProtocolHandler ( scheme : string , url : string | URL ) : void {
93+ registerProtocolHandler ( _scheme : string , _url : string | URL ) : void {
8994 throw new Error ( 'Method not implemented.' ) ;
9095 }
9196 hardwareConcurrency : number ;
0 commit comments