2.11.0
2.11.0 (January 26, 2021)
New Features
- You can now import type definitions for the SDK APIs to your project. Previously, typescript developers relied on definitelyTyped for these definitions. We would like to thank the folks at DefinitelyTyped for maintaining these definitions. Going forward, the definitions will be included in the library and will take precedence over any other type definitions that you may be using. (JSDK-3007)
You can access the types of the public API classes from the Video
namespace as shown below:
import * as Video from 'twilio-video';
Video.connect('token', { name: 'my-cool-room' }).then((room: Video.Room) => {
console.log('Connected to Room:', room.name);
room.on('participantConnected', (participant: Video.RemoteParticipant) => {
console.log('RemoteParticipant joined:', participant.identity);
});
});
Bug Fixes
- Fixed a bug where the
Video
namespace is not exported properly when using RequireJS. (JSDK-3129)