aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/reviewDB/entities/Review.ts
diff options
context:
space:
mode:
authorManti <67705577+mantikafasi@users.noreply.github.com>2022-12-18 01:30:29 +0300
committerGitHub <noreply@github.com>2022-12-17 23:30:29 +0100
commit47de9fab2efc4edd29aca46eca87c931607c13dc (patch)
tree578ba641204a702edb27ddbf28dcf0663b23f2f4 /src/plugins/reviewDB/entities/Review.ts
parent3efc79224fd96f6c8b92a31197afe45e9937dd6c (diff)
downloadVencord-47de9fab2efc4edd29aca46eca87c931607c13dc.tar.gz
Vencord-47de9fab2efc4edd29aca46eca87c931607c13dc.tar.bz2
Vencord-47de9fab2efc4edd29aca46eca87c931607c13dc.zip
Make some changes to reviewdb ui and add badges to it (#245)
Diffstat (limited to 'src/plugins/reviewDB/entities/Review.ts')
-rw-r--r--src/plugins/reviewDB/entities/Review.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/reviewDB/entities/Review.ts b/src/plugins/reviewDB/entities/Review.ts
index 662c91a..12c3d50 100644
--- a/src/plugins/reviewDB/entities/Review.ts
+++ b/src/plugins/reviewDB/entities/Review.ts
@@ -16,6 +16,8 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
+import { Badge } from "./Badge";
+
export interface Review {
comment: string,
id: number,
@@ -24,4 +26,5 @@ export interface Review {
star: number,
username: string,
profile_photo: string;
+ badges: Badge[];
}