added ui for sound settings
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user