aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/preact/src/options.js
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/preact/src/options.js')
-rw-r--r--thirdparty/preact/src/options.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/thirdparty/preact/src/options.js b/thirdparty/preact/src/options.js
new file mode 100644
index 000000000..35b7418fc
--- /dev/null
+++ b/thirdparty/preact/src/options.js
@@ -0,0 +1,18 @@
+/** Global options
+ * @public
+ * @namespace options {Object}
+ */
+export default {
+
+ /** If `true`, `prop` changes trigger synchronous component updates.
+ * @name syncComponentUpdates
+ * @type Boolean
+ * @default true
+ */
+ //syncComponentUpdates: true,
+
+ /** Processes all created VNodes.
+ * @param {VNode} vnode A newly-created VNode to normalize/process
+ */
+ //vnode(vnode) { }
+};