i created an instance of class Meetings:
export var meeting: Meetings; //create a meeting instance of Meeting class present into meeting.ts
and when i call a function called "meetForMe()" on Meetings class:
var myMeeting = meeting.meetForMe(email);
i receive this error:
Cannot read property 'meetForMe' of undefined
I have declared class Meetings in this way:
export class Meetings{....}