Skip to content

Commit

Permalink
fix: Fixed export of ParticipantCollection
Browse files Browse the repository at this point in the history
  • Loading branch information
edgardmessias committed Nov 6, 2022
1 parent a8ffa50 commit 95787bc
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/whatsapp/collections/ParticipantCollection.ts
Expand Up @@ -18,9 +18,11 @@ import { exportModule } from '../exportModule';
import { ParticipantModel } from '../models';
import { Collection } from './Collection';

/** @whatsapp 96091
/**
* @whatsapp 96091
* @whatsapp 54311 >= 2.2212.8
* @whatsapp 754311 >= 2.2222.8
* @whatsapp 164560 >= 2.2242.6
*/
export declare class ParticipantCollection extends Collection<ParticipantModel> {
static model: ParticipantModel;
Expand All @@ -41,10 +43,7 @@ export declare class ParticipantCollection extends Collection<ParticipantModel>
exportModule(
exports,
{
ParticipantCollection: [
'ParticipantCollectionImpl',
'ParticipantCollection',
],
ParticipantCollection: ['default'],
},
(m) => m.ParticipantCollectionImpl || m.ParticipantCollection
(m) => m.default.prototype.iAmMember
);

0 comments on commit 95787bc

Please sign in to comment.