signal-desktop/ts/state/selectors/installer.ts
automated-signal 438091b33a
Make backup import UI part of install
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
2024-09-04 14:56:33 +10:00

8 lines
285 B
TypeScript

// Copyright 2024 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { StateType } from '../reducer';
import type { InstallerStateType } from '../ducks/installer';
export const getInstallerState = (state: StateType): InstallerStateType =>
state.installer;