diff options
author | Nickyux <30734036+nmsturcke@users.noreply.github.com> | 2022-12-23 03:17:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-23 03:17:19 +0100 |
commit | aff1b68d6b480ecf25d03ee11ee7ca2fb04d945c (patch) | |
tree | 43ae0b57acdd88a6ec64f5441e3bf3061d947c5c /src/globals.d.ts | |
parent | 074542f0b36cd61e3d2a1aefc7c716d394e1f751 (diff) | |
download | Vencord-aff1b68d6b480ecf25d03ee11ee7ca2fb04d945c.tar.gz Vencord-aff1b68d6b480ecf25d03ee11ee7ca2fb04d945c.tar.bz2 Vencord-aff1b68d6b480ecf25d03ee11ee7ca2fb04d945c.zip |
Add a "NEW" Badge for New Plugins (V2)! (#234)
Co-authored-by: Ven <vendicated@riseup.net>
Co-authored-by: Justice Almanzar <superdash993@gmail.com>
Co-authored-by: ArjixWasTaken <53124886+ArjixWasTaken@users.noreply.github.com>
Diffstat (limited to 'src/globals.d.ts')
-rw-r--r-- | src/globals.d.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/globals.d.ts b/src/globals.d.ts index 069cbcb..2e8d444 100644 --- a/src/globals.d.ts +++ b/src/globals.d.ts @@ -16,6 +16,7 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ +import { LoDashStatic } from "lodash"; declare global { /** @@ -54,6 +55,7 @@ declare global { push(chunk: any): any; pop(): any; }; + _: LoDashStatic; [k: string]: any; } } |