mattermost-redux
Version:
Common code (API client, Redux stores, logic, utility functions) for building a Mattermost client
15 lines (14 loc) • 557 B
TypeScript
import type { AnyAction } from 'redux';
import type { RequestStatusType } from '@mattermost/types/requests';
declare const _default: import("redux").Reducer<{
getChannels: RequestStatusType;
getAllChannels: RequestStatusType;
myChannels: RequestStatusType;
createChannel: RequestStatusType;
}, AnyAction, Partial<{
getChannels: RequestStatusType | undefined;
getAllChannels: RequestStatusType | undefined;
myChannels: RequestStatusType | undefined;
createChannel: RequestStatusType | undefined;
}>>;
export default _default;