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

9 lines
291 B
TypeScript
Raw Normal View History

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