csstype
csstype copied to clipboard
Missing WebkitAppRegion property
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.
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