Make typescript happy, tsc test run in CI

This commit is contained in:
Vendicated 2022-10-09 22:58:08 +02:00
parent 5610df8b37
commit a89e17a390
No known key found for this signature in database
GPG key ID: EC781ADFB93EFFA3
11 changed files with 45 additions and 36 deletions

View file

@ -12,7 +12,8 @@ export async function toggle(isEnabled: boolean) {
VencordNative.ipc.on(IpcEvents.QUICK_CSS_UPDATE, (_, css: string) => style.innerText = css);
style.innerText = await VencordNative.ipc.invoke(IpcEvents.GET_QUICK_CSS);
}
} else style.disabled = !isEnabled;
} else // @ts-ignore yes typescript, property 'disabled' does exist on type 'HTMLStyleElement' u should try reading the docs some time
style.disabled = !isEnabled;
}
document.addEventListener("DOMContentLoaded", () => {