Release 0.7.10

This commit is contained in:
Yanzhen Yu
2019-04-02 13:38:38 +08:00
parent c04e4bf0a5
commit 8e90801daf
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;