Release 0.7.10

This commit is contained in:
Yanzhen Yu
2026-04-01 12:00:00 +08:00
parent d1b32e6e9d
commit 6010d62c60
4 changed files with 11 additions and 6 deletions

2
typings/utils.d.ts vendored
View File

@@ -6,5 +6,5 @@ export declare function throttle<T>(func: (arg: T) => void, wait: number, option
export declare function hookSetter<T>(target: T, key: string | number | symbol, d: PropertyDescriptor): hookResetter;
export declare function getWindowHeight(): number;
export declare function getWindowWidth(): number;
export declare function isBlocked(node: Node | null): boolean;
export declare function isBlocked(node: Node | null, blockClass: string): boolean;
export declare function isAncestorRemoved(target: INode): boolean;