1
0
mirror of https://github.com/koloml/furbooru-tagging-assistant.git synced 2025-12-24 07:12:57 +00:00

Merge pull request #70 from koloml/feature/fullscreen-controls

Fullscreen Viewer: Added image/video quality setting and more explicit "close" icon
This commit is contained in:
2025-01-03 06:41:41 +04:00
committed by GitHub
6 changed files with 166 additions and 15 deletions

7
src/app.d.ts vendored
View File

@@ -27,6 +27,13 @@ declare global {
profiles: MaintenanceProfile;
groups: TagGroup;
}
interface ImageURIs {
full: string;
large: string;
medium: string;
small: string;
}
}
}