mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-21 18:59:27 +00:00
8 lines
244 B
TypeScript
8 lines
244 B
TypeScript
// Copyright 2022 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
export const getStoriesDisabled = (): boolean =>
|
|
window.Events.getHasStoriesDisabled();
|
|
|
|
export const getStoriesBlocked = (): boolean => getStoriesDisabled();
|