Skip to content

Commit

Permalink
Fix primefaces#4878: DomHanlder typescript fixes (primefaces#4880)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Sep 5, 2023
1 parent 189409c commit a67b8a6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/lib/utils/utils.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ export declare class DomHandler {
static getBrowserLanguage(): string;
static getWindowScrollTop(): number;
static getWindowScrollLeft(): number;
static getOuterWidth(el: HTMLElement, margin: boolean): number;
static getOuterHeight(el: HTMLElement, margin: boolean): number;
static getClientHeight(el: HTMLElement, margin: boolean): number;
static getClientWidth(el: HTMLElement, margin: boolean): number;
static getOuterWidth(el?: HTMLElement | null, margin?: boolean): number;
static getOuterHeight(el?: HTMLElement | null, margin?: boolean): number;
static getClientHeight(el?: HTMLElement | null, margin?: boolean): number;
static getClientWidth(el?: HTMLElement | null, margin?: boolean): number;
static getViewport(): { width: number; height: number };
static getOffset(el: HTMLElement): { top: any; left: any };
static index(el: HTMLElement): number;
Expand Down

0 comments on commit a67b8a6

Please sign in to comment.