9 lines
279 B
TypeScript
9 lines
279 B
TypeScript
export declare const getNarrowerRect: ({ firstRect, secondRect, }: {
|
|
firstRect: DOMRect;
|
|
secondRect: DOMRect;
|
|
}) => DOMRect;
|
|
export declare const getWiderRectAndExpand: ({ firstRect, secondRect, }: {
|
|
firstRect: DOMRect | null;
|
|
secondRect: DOMRect;
|
|
}) => DOMRect;
|