@skyway-sdk/rtc-api-client
Version:
The official Next Generation JavaScript SDK for SkyWay
43 lines • 1.06 kB
TypeScript
import model from '@skyway-sdk/model';
export interface ChannelOpenedEvent {
}
export interface ChannelClosedEvent {
}
export interface ChannelMetadataUpdatedEvent {
channel: {
metadata: string;
};
}
export interface ChangedEvent {
}
export interface MemberJoinedEvent {
member: model.Member;
}
export interface MemberLeftEvent {
member: model.Member;
}
export interface MemberMetadataUpdatedEvent {
member: model.Member;
}
export interface StreamPublishedEvent {
publication: model.Publication;
}
export interface StreamUnpublishedEvent {
publication: model.Publication;
}
export interface PublicationMetadataUpdatedEvent {
publication: model.Publication;
}
export interface PublicationDisabledEvent {
publication: model.Publication;
}
export interface PublicationEnabledEvent {
publication: model.Publication;
}
export interface StreamSubscribedEvent {
subscription: model.Subscription;
}
export interface StreamUnsubscribedEvent {
subscription: model.Subscription;
}
//# sourceMappingURL=event.d.ts.map