diff options
author | Ven <vendicated@riseup.net> | 2022-10-30 02:58:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-30 02:58:11 +0100 |
commit | 3af9a14a0e78be88c5a048b79187c32796c06a7c (patch) | |
tree | a7fa6601555fd03b15da5685df40c3d33cbb89bd /src/globals.d.ts | |
parent | 739b1e47d40d645076bb74d82355f5e45edcd84e (diff) | |
download | Vencord-3af9a14a0e78be88c5a048b79187c32796c06a7c.tar.gz Vencord-3af9a14a0e78be88c5a048b79187c32796c06a7c.tar.bz2 Vencord-3af9a14a0e78be88c5a048b79187c32796c06a7c.zip |
Patcher: More useful errors with code diffs (#177)
* Patcher: More useful errors with code diffs
* Nicer log formatting
* PluginCards: ellipsises
Diffstat (limited to 'src/globals.d.ts')
-rw-r--r-- | src/globals.d.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/globals.d.ts b/src/globals.d.ts index 071bca2..2872f62 100644 --- a/src/globals.d.ts +++ b/src/globals.d.ts @@ -32,6 +32,7 @@ declare global { * replace: `${IS_WEB}?foo:bar` */ export var IS_WEB: boolean; + export var IS_DEV: boolean; export var IS_STANDALONE: boolean; export var VencordNative: typeof import("./VencordNative").default; |