signal-desktop/ts/state/selectors/installer.ts

9 lines
285 B
TypeScript
Raw Normal View History

2024-09-04 02:56:13 +00:00
// 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;