37030-vm/staticfiles/@popperjs/core/lib/dom-utils/getComputedStyle.js.flow
2025-12-18 01:27:44 +00:00

9 lines
190 B
Plaintext

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