lix-website/themes/lix/assets/@popperjs/core/lib/dom-utils/getComputedStyle.js.flow

9 lines
190 B
Plaintext
Raw Normal View History

2024-04-27 03:39:10 +00:00
// @flow
import getWindow from './getWindow';
export default function getComputedStyle(
element: Element
): CSSStyleDeclaration {
return getWindow(element).getComputedStyle(element);
}