signal-desktop/sticker-creator/store/reducer.ts
2020-11-04 13:03:13 -06:00

12 lines
373 B
TypeScript

// Copyright 2019-2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { combineReducers, Reducer } 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;