admin管理员组文章数量:1344238
Implementing a gyroscope permission request, but i get a typescript error on requestPermission
My code:
if (typeof (DeviceMotionEvent) !== 'undefined' && typeof (DeviceMotionEvent.requestPermission) === 'function') {
return DeviceMotionEvent.requestPermission()
.then((response: string) => response === 'granted');
}
TS2339: Property 'requestPermission' does not exist on type '{ new (type: string, eventInitDict?:
DeviceMotionEventInit): DeviceMotionEvent; prototype: DeviceMotionEvent; }'.
Struggling a bit with this one. i tried casting request permission like this (DeviceMotionEvent.requestPermission() as any) but it stays the same. Since it's not a module i cannot just do yarn add @types/...
Implementing a gyroscope permission request, but i get a typescript error on requestPermission
My code:
if (typeof (DeviceMotionEvent) !== 'undefined' && typeof (DeviceMotionEvent.requestPermission) === 'function') {
return DeviceMotionEvent.requestPermission()
.then((response: string) => response === 'granted');
}
TS2339: Property 'requestPermission' does not exist on type '{ new (type: string, eventInitDict?:
DeviceMotionEventInit): DeviceMotionEvent; prototype: DeviceMotionEvent; }'.
Struggling a bit with this one. i tried casting request permission like this (DeviceMotionEvent.requestPermission() as any) but it stays the same. Since it's not a module i cannot just do yarn add @types/...
Share Improve this question edited Mar 11, 2020 at 15:59 Cerbrus 73k19 gold badges136 silver badges150 bronze badges asked Mar 11, 2020 at 15:58 NarcilNarcil 3553 silver badges14 bronze badges2 Answers
Reset to default 8Please try to avoid casting types to any
, since its bad and instead try to narrow the type.
Extend native Web API DeviceOrientationEvent
event for iOS devices:
interface DeviceOrientationEventiOS extends DeviceOrientationEvent {
requestPermission?: () => Promise<'granted' | 'denied'>;
}
const requestPermission = (DeviceOrientationEvent as unknown as DeviceOrientationEventiOS).requestPermission;
const iOS = typeof requestPermission === 'function';
if (iOS) {
const response = await requestPermission();
if (response === 'granted') {
// execute
}
}
You need to cast the Object, not the function, try this:
(DeviceMotionEvent as any).requestPermission()
本文标签: javascriptDeviceMotionEvent Request Permission with TypescriptStack Overflow
版权声明:本文标题:javascript - DeviceMotionEvent Request Permission with Typescript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743746762a2531897.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论