We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1887112 commit a9c31ffCopy full SHA for a9c31ff
src/entries/dom-api.js
@@ -1,3 +1,8 @@
1
import {document as lightJsDocument} from '@litejs/dom';
2
+import {CSSStyleDeclaration} from '@litejs/dom/css';
3
+
4
+CSSStyleDeclaration.prototype.setProperty = function(key, value) {
5
+ this[key] = value;
6
+};
7
8
export const document = lightJsDocument;
0 commit comments