- saving current work before refactor
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user