mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2026-07-12 22:14:33 +10:00
feat(download ui): debug queue interface
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
import type { User } from "@prisma/client";
|
||||
import type { Component } from "vue";
|
||||
|
||||
export type NavigationItem = {
|
||||
@@ -12,11 +11,31 @@ export type QuickActionNav = {
|
||||
notifications?: number;
|
||||
action: () => Promise<void>;
|
||||
};
|
||||
|
||||
export type User = {
|
||||
id: string;
|
||||
username: string;
|
||||
admin: boolean;
|
||||
displayName: string;
|
||||
profilePicture: string;
|
||||
};
|
||||
|
||||
export type AppState = {
|
||||
status: AppStatus;
|
||||
user?: User;
|
||||
};
|
||||
|
||||
export type Game = {
|
||||
id: string;
|
||||
mName: string;
|
||||
mShortDescription: string;
|
||||
mDescription: string;
|
||||
mIconId: string;
|
||||
mBannerId: string;
|
||||
mCoverId: string;
|
||||
mImageLibrary: string[];
|
||||
};
|
||||
|
||||
export enum AppStatus {
|
||||
NotConfigured = "NotConfigured",
|
||||
SignedOut = "SignedOut",
|
||||
|
||||
Reference in New Issue
Block a user