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

9 lines
190 B
Text
Raw Normal View History

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