import { createLocalCommunityMemberEventSubscriber } from './utils';

export const onLocalCommunityJoined = (
  callback: (community: Amity.InternalCommunity, member: Amity.Membership<'community'>[]) => void,
) => createLocalCommunityMemberEventSubscriber('local.community.joined', callback);
