5 lines
289 B
TypeScript
5 lines
289 B
TypeScript
export type RemoveUserFromGroupResponse = {
|
|
errorMembers: string[];
|
|
};
|
|
export declare const removeUserFromGroupFactory: (ctx: import("../context.js").ContextBase, api: import("../apis.js").API) => (memberId: string | string[], groupId: string) => Promise<RemoveUserFromGroupResponse>;
|