remove "default" keyword from Badge because eslint explodes for some reaosn

This commit is contained in:
Manti 2022-11-28 13:28:20 +03:00
parent 19f4563182
commit 69cc7684c4
2 changed files with 5 additions and 6 deletions

View file

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

View file

@ -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,