UNPKG

@warriorteam/zalo-personal

Version:

Unofficial Zalo Personal API for JavaScript - A powerful library for interacting with Zalo personal accounts with URL attachment support, auto-reply, product catalog, and business features

24 lines (23 loc) 704 B
export type GetGroupBlockedMemberPayload = { /** * Page number (default: 1) */ page?: number; /** * Number of items to retrieve (default: 50) */ count?: number; }; export type GetGroupBlockedMemberResponse = { blocked_members: { id: string; dName: string; zaloName: string; avatar: string; avatar_25: string; accountStatus: number; type: number; }[]; has_more: number; }; export declare const getGroupBlockedMemberFactory: (ctx: import("../context.js").ContextBase, api: import("../apis.js").API) => (payload: GetGroupBlockedMemberPayload, groupId: string) => Promise<GetGroupBlockedMemberResponse>;