From 81342e2579165ebfdb28c749dc5225141721a419 Mon Sep 17 00:00:00 2001 From: FifthWit Date: Thu, 30 Jan 2025 13:11:48 -0600 Subject: switched to double quotes --- frontend/src/types/Chapters.ts | 4 ++-- frontend/src/types/Game.ts | 2 +- frontend/src/types/Map.ts | 10 +++++----- frontend/src/types/Profile.ts | 2 +- frontend/src/types/Ranking.ts | 2 +- frontend/src/types/Search.ts | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) (limited to 'frontend/src/types') diff --git a/frontend/src/types/Chapters.ts b/frontend/src/types/Chapters.ts index 8924b97..5b494ca 100644 --- a/frontend/src/types/Chapters.ts +++ b/frontend/src/types/Chapters.ts @@ -1,5 +1,5 @@ -import type { Game } from '@customTypes/Game'; -import type { Map } from '@customTypes/Map'; +import type { Game } from "@customTypes/Game"; +import type { Map } from "@customTypes/Map"; interface Chapter { id: number; diff --git a/frontend/src/types/Game.ts b/frontend/src/types/Game.ts index be2cd73..0e7dc80 100644 --- a/frontend/src/types/Game.ts +++ b/frontend/src/types/Game.ts @@ -1,4 +1,4 @@ -import type { Map } from '@customTypes/Map'; +import type { Map } from "@customTypes/Map"; export interface Game { id: number; diff --git a/frontend/src/types/Map.ts b/frontend/src/types/Map.ts index 6bc6369..6a42c2a 100644 --- a/frontend/src/types/Map.ts +++ b/frontend/src/types/Map.ts @@ -1,6 +1,6 @@ -import type { Category, GameCategoryPortals } from '@customTypes/Game'; -import type { Pagination } from '@customTypes/Pagination'; -import type { UserShort } from '@customTypes/Profile'; +import type { Category, GameCategoryPortals } from "@customTypes/Game"; +import type { Pagination } from "@customTypes/Pagination"; +import type { UserShort } from "@customTypes/Profile"; export interface Map { id: number; @@ -44,7 +44,7 @@ export interface MapLeaderboard { } export interface MapLeaderboardRecordSingleplayer { - kind: 'singleplayer'; + kind: "singleplayer"; placement: number; record_id: number; score_count: number; @@ -55,7 +55,7 @@ export interface MapLeaderboardRecordSingleplayer { } export interface MapLeaderboardRecordMultiplayer { - kind: 'multiplayer'; + kind: "multiplayer"; placement: number; record_id: number; score_count: number; diff --git a/frontend/src/types/Profile.ts b/frontend/src/types/Profile.ts index 8051ae5..3c83d29 100644 --- a/frontend/src/types/Profile.ts +++ b/frontend/src/types/Profile.ts @@ -1,4 +1,4 @@ -import type { Pagination } from '@customTypes/Pagination'; +import type { Pagination } from "@customTypes/Pagination"; export interface UserShort { steam_id: string; diff --git a/frontend/src/types/Ranking.ts b/frontend/src/types/Ranking.ts index 06a5ca4..800f4be 100644 --- a/frontend/src/types/Ranking.ts +++ b/frontend/src/types/Ranking.ts @@ -1,4 +1,4 @@ -import type { UserShort } from '@customTypes/Profile'; +import type { UserShort } from "@customTypes/Profile"; export interface RankingType { placement: number; diff --git a/frontend/src/types/Search.ts b/frontend/src/types/Search.ts index 48b9169..b258ee3 100644 --- a/frontend/src/types/Search.ts +++ b/frontend/src/types/Search.ts @@ -1,4 +1,4 @@ -import type { UserShort } from '@customTypes/Profile'; +import type { UserShort } from "@customTypes/Profile"; export interface Search { players: UserShort[]; -- cgit v1.2.3