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

9 lines
300 B
TypeScript
Raw Normal View History

2022-12-20 17:50:23 +00:00
// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { StateType } from '../reducer';
import type { MediaGalleryStateType } from '../ducks/mediaGallery';
export const getMediaGalleryState = (state: StateType): MediaGalleryStateType =>
state.mediaGallery;