mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-22 03:09:25 +00:00
14 lines
402 B
TypeScript
14 lines
402 B
TypeScript
// Copyright 2019-2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { Reducer } from 'redux';
|
|
import { combineReducers } from 'redux';
|
|
// eslint-disable-next-line import/no-cycle
|
|
import { reducer as stickers } from './ducks/stickers';
|
|
|
|
export const reducer = combineReducers({
|
|
stickers,
|
|
});
|
|
|
|
export type AppState = typeof reducer extends Reducer<infer U> ? U : never;
|