2024-09-03 19:56:13 -07:00
|
|
|
// Copyright 2024 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2025-09-16 17:39:03 -07:00
|
|
|
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;
|