Add preliminary missing airline check

This commit is contained in:
2026-07-12 01:42:57 +10:00
parent 5ac580bb06
commit fd3b5b0405
8 changed files with 225 additions and 1 deletions
+8
View File
@@ -326,6 +326,14 @@ export interface MissingLivery {
clipboard_text: string;
}
export interface MissingAirline{
code: string;
flights: {
flight_number: string;
link: string;
}[]
}
declare module '@inertiajs/vue3' {
interface PageProps extends SharedProps {}
}