From 670b7d7d01c9cafb8176f36d4d4d5e7268f67e68 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Wed, 26 Oct 2022 13:54:23 +0200 Subject: [PATCH] Make tsc happy --- src/Vencord.ts | 4 ++-- src/globals.d.ts | 10 ++++++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/Vencord.ts b/src/Vencord.ts index 83cd13a..4d18cb2 100644 --- a/src/Vencord.ts +++ b/src/Vencord.ts @@ -24,10 +24,10 @@ export * as Updater from "./utils/updater"; export * as Webpack from "./webpack"; import { popNotice, showNotice } from "./api/Notices"; -import { PlainSettings,Settings } from "./api/settings"; +import { PlainSettings, Settings } from "./api/settings"; import { startAllPlugins } from "./plugins"; -export { PlainSettings,Settings }; +export { PlainSettings, Settings }; import "./webpack/patchWebpack"; import "./utils/quickCss"; diff --git a/src/globals.d.ts b/src/globals.d.ts index 5614543..49c3659 100644 --- a/src/globals.d.ts +++ b/src/globals.d.ts @@ -16,6 +16,8 @@ * along with this program. If not, see . */ +import React from "react"; + declare global { /** * This exists only at build time, so references to it in patches should insert it @@ -47,6 +49,12 @@ declare global { */ export var DiscordNative: any; + // jsFactory, here to make ts happy + /** Shorter alias for React.createElement to reduce bundle size, don't use this. */ + export var _Ve$: typeof React["createElement"]; + /** Shorter alias for React.Fragment to reduce bundle size, don't use this. */ + export var _VF$: typeof React["Fragment"]; + interface Window { webpackChunkdiscord_app: { push(chunk: any): any; @@ -55,5 +63,3 @@ declare global { [k: string]: any; } } - -export { };