Some checks are pending
Deploy Volleyball CMS / deploy (push) Waiting to run
8 lines
174 B
TypeScript
8 lines
174 B
TypeScript
export declare function useElementSize(element: HTMLElement | null, unit?: boolean): {
|
|
width: number;
|
|
height: number;
|
|
} | {
|
|
width: string;
|
|
height: string;
|
|
};
|