const { window } = new JSDOM(`
<!DOCTYPE html>
<html>
<head>
<style>
.div {
color: red;
}
</style>
</head>
<body>
<div class="div"></div>
</body>
</html>
`);
window.onload = () => {
const div = window.document.querySelector("div")!;
console.log(div.style);
};