feat(web): require page load to export title (#1956)

This commit is contained in:
Michel Heusschen
2023-03-06 15:25:25 +01:00
committed by GitHub
parent 950989a85e
commit 8857d0b8df
3 changed files with 23 additions and 3 deletions

8
web/src/app.d.ts vendored
View File

@@ -8,7 +8,13 @@ declare namespace App {
api: import('@api').ImmichApi;
}
// interface Platform {}
interface PageData {
meta: {
title: string;
description?: string;
imageUrl?: string;
};
}
interface Error {
message: string;