diff options
author | Vendicated <vendicated@riseup.net> | 2022-10-09 22:58:08 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-10-09 22:58:08 +0200 |
commit | a89e17a3904cce8b7c9a70519e275fe9364526ae (patch) | |
tree | cd611a02618ac9aa59af7633ee35d96926251e68 /src/utils | |
parent | 5610df8b3707fd8405764b903cb3f829571075ac (diff) | |
download | Vencord-a89e17a3904cce8b7c9a70519e275fe9364526ae.tar.gz Vencord-a89e17a3904cce8b7c9a70519e275fe9364526ae.tar.bz2 Vencord-a89e17a3904cce8b7c9a70519e275fe9364526ae.zip |
Make typescript happy, tsc test run in CI
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/ChangeList.ts | 2 | ||||
-rw-r--r-- | src/utils/misc.tsx | 2 | ||||
-rw-r--r-- | src/utils/quickCss.ts | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/src/utils/ChangeList.ts b/src/utils/ChangeList.ts index d8f7449..a0da8f2 100644 --- a/src/utils/ChangeList.ts +++ b/src/utils/ChangeList.ts @@ -1,5 +1,5 @@ export class ChangeList<T>{ - private set = new Set<T>; + private set = new Set<T>(); public get changeCount() { return this.set.size; diff --git a/src/utils/misc.tsx b/src/utils/misc.tsx index a7d781a..7a733ed 100644 --- a/src/utils/misc.tsx +++ b/src/utils/misc.tsx @@ -28,7 +28,7 @@ export function lazyWebpack<T = any>(filter: FilterFn): T { construct: (_, args, newTarget) => Reflect.construct(getMod(), args, newTarget), deleteProperty: (_, prop) => delete getMod()[prop], defineProperty: (_, property, attributes) => !!Object.defineProperty(getMod(), property, attributes) - }) as T; + }) as any as T; } /** diff --git a/src/utils/quickCss.ts b/src/utils/quickCss.ts index eea44df..785dd71 100644 --- a/src/utils/quickCss.ts +++ b/src/utils/quickCss.ts @@ -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", () => { |