mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-02-25 07:48:32 +00:00
remove "default" keyword from Badge because eslint explodes for some reaosn
This commit is contained in:
parent
19f4563182
commit
69cc7684c4
2 changed files with 5 additions and 6 deletions
|
@ -16,11 +16,10 @@
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* eslint-disable semi */
|
|
||||||
|
|
||||||
export default interface Badge {
|
export interface Badge {
|
||||||
badge_name: string,
|
badge_name: string;
|
||||||
badge_icon: string,
|
badge_icon: string;
|
||||||
redirect_url: string,
|
redirect_url: string;
|
||||||
badge_type: number;
|
badge_type: number;
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import Badge from "./Badge";
|
import { Badge } from "./Badge";
|
||||||
|
|
||||||
export interface Review {
|
export interface Review {
|
||||||
comment: string,
|
comment: string,
|
||||||
|
|
Loading…
Add table
Reference in a new issue