fix elint

This commit is contained in:
Manti 2022-11-22 01:19:37 +03:00
parent e40d2142f4
commit 250a10b6c4
2 changed files with 38 additions and 3 deletions

View file

@ -1,7 +1,24 @@
import { IpcEvents } from "../../../utils";
import { Tooltip } from "../../../webpack/common";
/*
* Vencord, a modification for Discord's desktop app
* Copyright (c) 2022 Vendicated and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import Badge from "../entities/Badge";
import IpcEvents from "../../../utils/IpcEvents";
import { Tooltip } from "../../../webpack/common";
export default function ReviewBadge(badge: Badge) {
return (

View file

@ -1,6 +1,24 @@
/*
* Vencord, a modification for Discord's desktop app
* Copyright (c) 2022 Vendicated and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
export default interface Badge {
badge_name: string,
badge_icon: string,
redirect_url: string,
badge_type: number,
}
};