Skip to content

Commit

Permalink
fix eslint and tslint for jq.find()
Browse files Browse the repository at this point in the history
  • Loading branch information
jumperchen committed Aug 30, 2024
1 parent 702f79e commit f4cdc24
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions zk/src/main/resources/web/js/zk/global.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,13 @@ declare global {
* include, such as `['width', 'height']`. Ignored if not specified or null.
*/
filterTextStyle(style: Record<string, string>, plus?: string[]): Record<string, string>;
find<TElement extends HTMLElement = HTMLElement>(html: JQuery.htmlString, ownerDocument_attributes?: Document | JQuery.PlainObject): JQuery<TElement>;
find<TElement extends Element = HTMLElement>(selector: JQuery.Selector, context?: Element | Document | JQuery | JQuery.Selector): JQuery<TElement>;
find(element: HTMLSelectElement): JQuery<HTMLSelectElement>;
find<T extends Element>(element_elementArray: T | ArrayLike<T>): JQuery<T>;
find<T>(selection: JQuery<T>): JQuery<T>;
find<TElement = HTMLElement>(callback: ((this: Document, $: JQueryStatic) => void)): JQuery<TElement>;
find<T extends JQuery.PlainObject>(object: T): JQuery<T>;
focusOut(): void;
head(): HTMLElement | undefined;
innerHeight(): number;
Expand Down

0 comments on commit f4cdc24

Please sign in to comment.