lab_work3

This commit is contained in:
2025-05-05 17:26:53 +04:00
parent 307c2b89d0
commit edd470aa16
8988 changed files with 857846 additions and 609 deletions

View File

@@ -0,0 +1,8 @@
// @flow
import getWindow from './getWindow';
export default function getComputedStyle(
element: Element
): CSSStyleDeclaration {
return getWindow(element).getComputedStyle(element);
}