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>
This commit is contained in:
Nickyux
2022-12-23 03:17:19 +01:00
committed by GitHub
parent 074542f0b3
commit aff1b68d6b
7 changed files with 87 additions and 9 deletions

2
src/globals.d.ts vendored
View File

@ -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;
}
}