@likeminds.community/feed-js
Version:
LikeMinds Javascript SDK for chat APIs
39 lines (38 loc) • 717 B
TypeScript
export declare type Feed = {
page: number;
pageSize: number;
};
export declare type AddPost = {
text: string;
attachments: any;
};
export declare type SavePost = {
postId: string;
};
export declare type LikePost = {
postId: string;
};
export declare type PinPost = {
postId: string;
};
export declare type EditPost = {
text: string;
attachments: any;
};
export declare type GetPost = {
page: number;
pageSize: number;
};
export declare type DeletePost = {
deleteReason: string;
};
export declare type DecodeUrl = {
url: string;
};
export declare type AddComment = {
text: string;
};
export declare type GetComment = {
page: number;
pageSize: number;
};