Files
Desktop/ts/state/selectors/mediaGallery.std.ts
T
2026-03-30 11:54:59 -07:00

9 lines
322 B
TypeScript

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