File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed
packages/runtime-core/src Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -416,20 +416,20 @@ interface LegacyOptions<
416416 extends ?: Extends
417417
418418 // lifecycle
419- beforeCreate ?( ) : void
420- created ?( ) : void
421- beforeMount ?( ) : void
422- mounted ?( ) : void
423- beforeUpdate ?( ) : void
424- updated ?( ) : void
425- activated ?( ) : void
426- deactivated ?( ) : void
419+ beforeCreate ?( ) : any
420+ created ?( ) : any
421+ beforeMount ?( ) : any
422+ mounted ?( ) : any
423+ beforeUpdate ?( ) : any
424+ updated ?( ) : any
425+ activated ?( ) : any
426+ deactivated ?( ) : any
427427 /** @deprecated use `beforeUnmount` instead */
428- beforeDestroy ?( ) : void
429- beforeUnmount ?( ) : void
428+ beforeDestroy ?( ) : any
429+ beforeUnmount ?( ) : any
430430 /** @deprecated use `unmounted` instead */
431- destroyed ?( ) : void
432- unmounted ?( ) : void
431+ destroyed ?( ) : any
432+ unmounted ?( ) : any
433433 renderTracked ?: DebuggerHook
434434 renderTriggered ?: DebuggerHook
435435 errorCaptured ?: ErrorCapturedHook
You can’t perform that action at this time.
0 commit comments