Why isn't backdropFilter available in CSSStyleDeclaration?

Viewed 515

The following code is not valid under the error:

Property 'backdropFilter' does not exist on type 'CSSStyleDeclaration'.

const modal = document.createElement('div')
modal.style.backdropFilter = '??'

Is there an explanation to why isn't https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter available in typescript?

1 Answers
Related