mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 04:09:49 +00:00
9 lines
307 B
TypeScript
9 lines
307 B
TypeScript
// Copyright 2024 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { StateType } from '../reducer.preload.js';
|
|
import type { InstallerStateType } from '../ducks/installer.preload.js';
|
|
|
|
export const getInstallerState = (state: StateType): InstallerStateType =>
|
|
state.installer;
|