- saving current work before refactor

This commit is contained in:
2025-10-28 08:50:55 +00:00
parent 93dcde4459
commit a64fa76ecb
4 changed files with 38 additions and 17 deletions

View File

@@ -305,6 +305,7 @@ export type SoundState = {
sightingVolume: number;
NPEDsoundVolume: number;
hotlistSoundVolume: number;
uploadedSound?: Blob | null;
};
type UpdateAction = {
@@ -331,7 +332,12 @@ type VolumeAction = {
payload: number;
};
export type SoundAction = UpdateAction | AddAction | VolumeAction;
type UploadedState = {
type: "UPLOADEDSOUND";
payload: Blob | undefined;
};
export type SoundAction = UpdateAction | AddAction | VolumeAction | UploadedState;
export type WifiSettingValues = {
ssid: string;
password: string;