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.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/thirdparty/preact/src/options.js b/thirdparty/preact/src/options.js
index 35b7418fc..49869604e 100644
--- a/thirdparty/preact/src/options.js
+++ b/thirdparty/preact/src/options.js
@@ -15,4 +15,13 @@ export default {
* @param {VNode} vnode A newly-created VNode to normalize/process
*/
//vnode(vnode) { }
+
+ /** Hook invoked after a component is mounted. */
+ // afterMount(component) { }
+
+ /** Hook invoked after the DOM is updated with a component's latest render. */
+ // afterUpdate(component) { }
+
+ /** Hook invoked immediately before a component is unmounted. */
+ // beforeUnmount(component) { }
};