chore(reactivity): remove duplicated ReactiveEffectRunner interface (#14063)

This commit is contained in:
殷谊辉 2025-11-07 14:04:03 +08:00 committed by GitHub
parent 11ec51aa5a
commit 90ce838a94
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 5 deletions

View File

@ -470,11 +470,6 @@ function removeDep(link: Link) {
}
}
export interface ReactiveEffectRunner<T = any> {
(): T
effect: ReactiveEffect
}
export function effect<T = any>(
fn: () => T,
options?: ReactiveEffectOptions,