csstype icon indicating copy to clipboard operation
csstype copied to clipboard

Missing WebkitAppRegion property

Open wincent opened this issue 6 years ago • 1 comments

Currently working around this with via module augmentation:

declare module 'csstype' {
  interface Properties {
    WebkitAppRegion?: 'drag' | 'inherit' | 'initial' | 'no-drag' | 'none' | 'unset',
  }
}

There is some official documentation for this property, and you can see it mentioned in the Electron docs; if you look in the Chrome dev tools you'll see that autocomplete offers the possible property values listed above.

wincent avatar Aug 04 '19 00:08 wincent

It's a non-standard property and it's unlikely it will be added. You could give it a shot and open an issue at https://github.com/mdn/data/. Thanks

frenic avatar Oct 04 '19 19:10 frenic