apply strictnullchecks to src/components/views/beacon/* (#10272)

This commit is contained in:
Kerry
2023-03-02 09:58:05 +00:00
committed by GitHub
parent ffa047be68
commit de6a1a661c
11 changed files with 48 additions and 30 deletions
+5 -5
View File
@@ -23,11 +23,11 @@ import { sortBeaconsByLatestExpiry } from "./duration";
type LiveBeaconsState = {
beacon?: Beacon;
onStopSharing?: () => void;
onResetLocationPublishError?: () => void;
stoppingInProgress?: boolean;
hasStopSharingError?: boolean;
hasLocationPublishError?: boolean;
onStopSharing: () => void;
onResetLocationPublishError: () => void;
stoppingInProgress: boolean;
hasStopSharingError: boolean;
hasLocationPublishError: boolean;
};
/**