added ui for sound settings

This commit is contained in:
2025-09-30 13:25:11 +01:00
parent 3903ff1cb8
commit 673df1a4f4
6 changed files with 226 additions and 0 deletions

View File

@@ -261,3 +261,20 @@ export type ZoomLevel = {
py: number;
level?: number;
};
export type SoundValue = string;
export type Hotlist = {
name: string;
sound: SoundValue;
};
export type FormValues = {
sightingSound: SoundValue;
NPEDsound: SoundValue;
hotlists: Hotlist[];
};
export type SoundUploadValue = {
soundFile: File | null;
};