hmc-guide/themes/hugo-mod-jslibs-dist/popperjs/package/lib/dom-utils/getComputedStyle.js.flow

9 lines
190 B
Plaintext

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