/** * Represents Meeting information. */ interface MeetingContext { /** * Meeting Id used by tab when running in meeting context */ id: string; } export type { MeetingContext };