File tree 1 file changed +12
-12
lines changed
packages/runtime-core/src
1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -416,20 +416,20 @@ interface LegacyOptions<
416
416
extends ?: Extends
417
417
418
418
// 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
427
427
/** @deprecated use `beforeUnmount` instead */
428
- beforeDestroy ?( ) : void
429
- beforeUnmount ?( ) : void
428
+ beforeDestroy ?( ) : any
429
+ beforeUnmount ?( ) : any
430
430
/** @deprecated use `unmounted` instead */
431
- destroyed ?( ) : void
432
- unmounted ?( ) : void
431
+ destroyed ?( ) : any
432
+ unmounted ?( ) : any
433
433
renderTracked ?: DebuggerHook
434
434
renderTriggered ?: DebuggerHook
435
435
errorCaptured ?: ErrorCapturedHook
You can’t perform that action at this time.
0 commit comments