lix-website/themes/lix/assets/@popperjs/core/lib/dom-utils/getComputedStyle.js.flow
2024-04-26 22:49:34 -06:00

9 lines
190 B
Plaintext

// @flow
import getWindow from './getWindow';
export default function getComputedStyle(
element: Element
): CSSStyleDeclaration {
return getWindow(element).getComputedStyle(element);
}