mirror of https://gitee.com/godoos/godoos.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
845 B
9 lines
845 B
export declare const hasTopClosestByClassName: (element: Node, className: string) => false | HTMLElement;
|
|
export declare const hasTopClosestByAttribute: (element: Node, attr: string, value: string) => false | HTMLElement;
|
|
export declare const hasTopClosestByTag: (element: Node, nodeName: string) => false | HTMLElement;
|
|
export declare const getTopList: (element: Node) => false | HTMLElement;
|
|
export declare const hasClosestByAttribute: (element: Node, attr: string, value: string) => false | HTMLElement;
|
|
export declare const hasClosestBlock: (element: Node) => false | HTMLElement;
|
|
export declare const hasClosestByMatchTag: (element: Node, nodeName: string) => false | HTMLElement;
|
|
export declare const hasClosestByClassName: (element: Node, className: string) => false | HTMLElement;
|
|
export declare const getLastNode: (node: Node) => Node;
|
|
|