aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorSammy <sammy@sammcheese.net>2023-01-07 22:52:55 +0100
committerGitHub <noreply@github.com>2023-01-07 22:52:55 +0100
commit06aa72c636c45220e4b30721f725b151f7a6db18 (patch)
tree155b524d5f4fef2c922cda040cb2b8555416f413 /src/utils
parent1713450540caeb5d4f79582099ab98915330f785 (diff)
downloadVencord-06aa72c636c45220e4b30721f725b151f7a6db18.tar.gz
Vencord-06aa72c636c45220e4b30721f725b151f7a6db18.tar.bz2
Vencord-06aa72c636c45220e4b30721f725b151f7a6db18.zip
feat(Plugin): InvisibleChat (#349)
Co-authored-by: Ven <vendicated@riseup.net>
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/constants.ts4
-rw-r--r--src/utils/dependencies.ts3
2 files changed, 7 insertions, 0 deletions
diff --git a/src/utils/constants.ts b/src/utils/constants.ts
index d15615b..dfb8157 100644
--- a/src/utils/constants.ts
+++ b/src/utils/constants.ts
@@ -180,5 +180,9 @@ export const Devs = /* #__PURE__*/ Object.freeze({
pointy: {
name: "pointy",
id: 99914384989519872n
+ },
+ SammCheese: {
+ name: "Samm-Cheese",
+ id: 372148345894076416n
}
});
diff --git a/src/utils/dependencies.ts b/src/utils/dependencies.ts
index ed26644..a09a87b 100644
--- a/src/utils/dependencies.ts
+++ b/src/utils/dependencies.ts
@@ -78,3 +78,6 @@ export interface ApngFrameData {
const shikiWorkerDist = "https://unpkg.com/@vap/shiki-worker@0.0.8/dist";
export const shikiWorkerSrc = `${shikiWorkerDist}/${IS_DEV ? "index.js" : "index.min.js"}`;
export const shikiOnigasmSrc = "https://unpkg.com/@vap/shiki@0.10.3/dist/onig.wasm";
+
+// @ts-expect-error SHUT UP
+export const getStegCloak = makeLazy(() => import("https://unpkg.com/stegcloak-dist@1.0.0/index.js"));