ngx-tencent-im
Version:
Instant messaging for Angular.
9 lines (8 loc) • 322 B
TypeScript
import { Action } from "@ngrx/store";
export interface GroupState {
groupList: Array<any>;
currentMemberList: Array<any>;
createGroupModelVisible: boolean;
}
export declare const initialState: GroupState;
export declare function groupReducer(state: GroupState | undefined, action: Action): GroupState;