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

Updated viewer to receive all the image URLs and apply selected size

This commit is contained in:
2024-12-30 22:40:58 +04:00
parent 98d3b1c696
commit 3d1e0d6f06
4 changed files with 50 additions and 11 deletions

7
src/app.d.ts vendored
View File

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