Added Notifications
This commit is contained in:
Vendored
+3
-3
@@ -10,7 +10,7 @@ declare module '@vue/runtime-core' {
|
||||
|
||||
export type ProfileView = 'map' | 'board' | 'passes' | 'achievements' ;
|
||||
export type ChartType = "line" | "area" | "bar" | "pie" | "donut" | "radialBar" | "scatter" | "bubble" | "heatmap" | "candlestick" | "boxPlot" | "radar" | "polarArea" | "rangeBar" | "rangeArea" | "treemap" | undefined
|
||||
export type BadgeVariant = 'first' | 'business' | 'premium' | 'economy' | 'private' | 'unspecified' | 'generic' | 'general_aviation' | 'crew' | "easy" | "moderate" | "hard" | "expensive" | "near-impossible" | "impossible"
|
||||
export type BadgeVariant = 'first' | 'business' | 'premium' | 'economy' | 'private' | 'unspecified' | 'generic' | 'general_aviation' | 'crew' | "easy" | "moderate" | "hard" | "expensive" | "near_impossible" | "impossible"
|
||||
|
||||
export interface User {
|
||||
id: number
|
||||
@@ -69,7 +69,7 @@ export type SharedProps = import('@inertiajs/core').PageProps & {
|
||||
}
|
||||
export interface AchievementDifficulty {
|
||||
id: number
|
||||
internal_name: string
|
||||
internal_name: "easy" | "moderate" | "hard" | "expensive" | "near_impossible" | "impossible"
|
||||
name: string
|
||||
description: string
|
||||
created_at: string | null
|
||||
@@ -98,7 +98,7 @@ export interface Achievement {
|
||||
achievement_category_id: number
|
||||
achievement_difficulty_id: number
|
||||
category?: AchievementCategory
|
||||
difficulty?: AchievementDifficulty
|
||||
difficulty: AchievementDifficulty
|
||||
has_page: boolean
|
||||
sort_order: number
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user