shift73k/assets_old/node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js.flow

8 lines
190 B
Text

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