@likeminds.community/chat-js-beta
Version:
LikeMinds Javascript SDK for chat APIs
30 lines (29 loc) • 663 B
TypeScript
export declare type GetHomeFeedRequest = {
page: number;
pageSize: number;
chatroomTypes: number[];
maxTimestamp: number;
minTimestamp: number;
};
export declare type CRid = {
chatroomId: number;
};
export declare type INVITE = {
channelType: number;
page: number;
pageSize: number;
};
export declare type IaType = {
channelId: number | string;
inviteStatus: number;
};
export declare type Device = {
token: string;
xDeviceId: string;
xPlatformCode: string;
};
export declare type Participant = {
chatroomId: number;
isSecret: boolean;
chatroomParticipants: any;
};