mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-12 12:10:44 +08:00
Update definitions to more closely match current spec state
This commit is contained in:
Vendored
+115
-107
@@ -3,63 +3,66 @@
|
||||
// These are TypeScript definitions to support static typing in TypeScript when interacting with WebRtc.
|
||||
// Definitions taken from http://dev.w3.org/2011/webrtc/editor/webrtc.html
|
||||
|
||||
// These are TypeScript definitions to support static typing in TypeScript when interacting with WebRtc.
|
||||
// Definitions taken from http://dev.w3.org/2011/webrtc/editor/webrtc.html
|
||||
|
||||
interface RTCConfiguration {
|
||||
iceServers: RTCIceServer[];
|
||||
iceServers: RTCIceServer[];
|
||||
}
|
||||
var RTCConfiguration: {
|
||||
prototype: RTCConfiguration;
|
||||
new (): RTCConfiguration;
|
||||
prototype: RTCConfiguration;
|
||||
new (): RTCConfiguration;
|
||||
}
|
||||
|
||||
interface RTCIceServer {
|
||||
url: string;
|
||||
credential?: string;
|
||||
url: string;
|
||||
credential?: string;
|
||||
}
|
||||
var RTCIceServer: {
|
||||
prototype: RTCIceServer;
|
||||
new (): RTCIceServer;
|
||||
prototype: RTCIceServer;
|
||||
new (): RTCIceServer;
|
||||
}
|
||||
|
||||
interface webkitRTCPeerConnection extends RTCPeerConnection {
|
||||
}
|
||||
var webkitRTCPeerConnection: {
|
||||
prototype: webkitRTCPeerConnection;
|
||||
new (settings: RTCPeerConnectionConfig, constraints?:MediaConstraints): webkitRTCPeerConnection;
|
||||
prototype: webkitRTCPeerConnection;
|
||||
new (settings: RTCPeerConnectionConfig, constraints?:MediaConstraints): webkitRTCPeerConnection;
|
||||
}
|
||||
|
||||
interface IceState {
|
||||
}
|
||||
var IceState: {
|
||||
prototype: IceState;
|
||||
new (): IceState;
|
||||
prototype: IceState;
|
||||
new (): IceState;
|
||||
}
|
||||
|
||||
// ks 12/20/12 - There's more here that doesn't seem to be documented very well yet.
|
||||
interface MediaConstraints {
|
||||
mandatory: MediaOfferConstraints;
|
||||
mandatory: MediaOfferConstraints;
|
||||
}
|
||||
|
||||
interface MediaOfferConstraints {
|
||||
OfferToReceiveAudio: bool;
|
||||
OfferToReceiveVideo: bool;
|
||||
OfferToReceiveAudio: bool;
|
||||
OfferToReceiveVideo: bool;
|
||||
}
|
||||
|
||||
interface RTCSessionDescription {
|
||||
type?: RTCSdpType;
|
||||
sdp?: string;
|
||||
type?: RTCSdpType;
|
||||
sdp?: string;
|
||||
}
|
||||
var RTCSessionDescription: {
|
||||
prototype: RTCSessionDescription;
|
||||
new (descriptionInitDict?: RTCSessionDescriptionInit): RTCSessionDescription;
|
||||
prototype: RTCSessionDescription;
|
||||
new (descriptionInitDict?: RTCSessionDescriptionInit): RTCSessionDescription;
|
||||
}
|
||||
|
||||
interface RTCSessionDescriptionInit {
|
||||
type: RTCSdpType;
|
||||
sdp: string;
|
||||
type: RTCSdpType;
|
||||
sdp: string;
|
||||
}
|
||||
var RTCSessionDescriptionInit: {
|
||||
prototype: RTCSessionDescriptionInit;
|
||||
new (): RTCSessionDescriptionInit;
|
||||
prototype: RTCSessionDescriptionInit;
|
||||
new (): RTCSessionDescriptionInit;
|
||||
}
|
||||
|
||||
interface SdpType {
|
||||
@@ -69,153 +72,158 @@ interface RTCPeerState {
|
||||
}
|
||||
|
||||
interface RTCDataChannelInit {
|
||||
reliable: bool;
|
||||
reliable: bool;
|
||||
}
|
||||
|
||||
enum RTCSdpType {
|
||||
offer,
|
||||
pranswer,
|
||||
answer
|
||||
offer,
|
||||
pranswer,
|
||||
answer
|
||||
}
|
||||
|
||||
enum RTCDataChannelState {
|
||||
connecting,
|
||||
open,
|
||||
closing,
|
||||
closed
|
||||
connecting,
|
||||
open,
|
||||
closing,
|
||||
closed
|
||||
}
|
||||
|
||||
interface RTCDataChannel extends EventTarget {
|
||||
label: string;
|
||||
reliable: bool;
|
||||
readyState: RTCDataChannelState;
|
||||
bufferedAmount: number;
|
||||
onopen: (event: Event)=> void;
|
||||
onerror: (event: Event)=> void;
|
||||
onclose: (event: Event)=> void;
|
||||
close(): void;
|
||||
onmessage: (event: Event)=> void;
|
||||
binaryType: string;
|
||||
send(data: string);
|
||||
send(data: ArrayBuffer);
|
||||
send(data: Blob);
|
||||
label: string;
|
||||
reliable: bool;
|
||||
readyState: RTCDataChannelState;
|
||||
bufferedAmount: number;
|
||||
onopen: (event: Event)=> void;
|
||||
onerror: (event: Event)=> void;
|
||||
onclose: (event: Event)=> void;
|
||||
close(): void;
|
||||
onmessage: (event: Event)=> void;
|
||||
binaryType: string;
|
||||
send(data: string);
|
||||
send(data: ArrayBuffer);
|
||||
send(data: Blob);
|
||||
}
|
||||
declare var RTCDataChannel: {
|
||||
prototype: RTCDataChannel;
|
||||
new (): RTCDataChannel;
|
||||
prototype: RTCDataChannel;
|
||||
new (): RTCDataChannel;
|
||||
}
|
||||
|
||||
interface RTCDataChannelEvent extends Event {
|
||||
constructor (eventInitDict: RTCDataChannelEventInit);
|
||||
channel: RTCDataChannel;
|
||||
constructor (eventInitDict: RTCDataChannelEventInit);
|
||||
channel: RTCDataChannel;
|
||||
}
|
||||
var RTCDataChannelEvent: {
|
||||
prototype: RTCDataChannelEvent;
|
||||
new (eventInitDict: RTCDataChannelEventInit);
|
||||
prototype: RTCDataChannelEvent;
|
||||
new (eventInitDict: RTCDataChannelEventInit);
|
||||
}
|
||||
|
||||
interface RTCIceCandidateEvent extends Event{
|
||||
candidate: RTCIceCandidate;
|
||||
candidate: RTCIceCandidate;
|
||||
}
|
||||
|
||||
interface RTCMediaStreamEvent extends Event {
|
||||
stream: MediaStream;
|
||||
stream: MediaStream;
|
||||
}
|
||||
|
||||
interface EventInit {
|
||||
}
|
||||
|
||||
interface RTCDataChannelEventInit extends EventInit {
|
||||
channel: RTCDataChannel;
|
||||
channel: RTCDataChannel;
|
||||
}
|
||||
|
||||
interface RTCVoidCallback {
|
||||
(): void;
|
||||
(): void;
|
||||
}
|
||||
interface RTCSessionDescriptionCallback {
|
||||
(sdp: RTCSessionDescription): void;
|
||||
(sdp: RTCSessionDescription): void;
|
||||
}
|
||||
interface RTCPeerConnectionErrorCallback {
|
||||
(errorInformation: string): void;
|
||||
(errorInformation: string): void;
|
||||
}
|
||||
|
||||
// This should be an enum
|
||||
interface RTCGatheringState {
|
||||
string;
|
||||
/** This should be an enum */
|
||||
interface RTCIceGatheringState {
|
||||
string;
|
||||
}
|
||||
|
||||
// This should be an enum
|
||||
interface RTCIceState {
|
||||
string;
|
||||
/** This should be an enum */
|
||||
interface RTCIceConnectionState {
|
||||
string;
|
||||
}
|
||||
|
||||
/** This should be an enum */
|
||||
interface RTCSignalingState{
|
||||
string;
|
||||
}
|
||||
|
||||
interface RTCPeerConnection {
|
||||
createOffer(successCallback: RTCSessionDescriptionCallback, failureCallback?: RTCPeerConnectionErrorCallback, constraints?: MediaConstraints): void;
|
||||
createAnswer(successCallback: RTCSessionDescriptionCallback, failureCallback?: RTCPeerConnectionErrorCallback, constraints?: MediaConstraints): void;
|
||||
setLocalDescription(description: RTCSessionDescription, successCallback?: RTCVoidCallback, failureCallback?: RTCPeerConnectionErrorCallback): void;
|
||||
localDescription: RTCSessionDescription;
|
||||
setRemoteDescription(description: RTCSessionDescription, successCallback?: RTCVoidCallback, failureCallback?: RTCPeerConnectionErrorCallback): void;
|
||||
remoteDescription: RTCSessionDescription;
|
||||
readyState: RTCPeerState;
|
||||
updateIce(configuration?: RTCConfiguration, constraints?: MediaConstraints): void;
|
||||
addIceCandidate(candidate: RTCIceCandidate): void;
|
||||
iceGatheringState: RTCGatheringState;
|
||||
iceState: RTCIceState;
|
||||
localStreams: MediaStream[];
|
||||
remoteStreams: MediaStream[];
|
||||
createDataChannel(label?: string, dataChannelDict?: RTCDataChannelInit): RTCDataChannel;
|
||||
ondatachannel: (event: Event)=> void;
|
||||
addStream(stream: MediaStream, constraints?: MediaConstraints): void;
|
||||
removeStream(stream: MediaStream): void;
|
||||
close(): void;
|
||||
onnegotiationneeded: (event: Event)=> void;
|
||||
onconnecting: (event: Event)=> void;
|
||||
onopen: (event: Event)=> void;
|
||||
onaddstream: (event: RTCMediaStreamEvent)=> void;
|
||||
onremovestream: (event: RTCMediaStreamEvent)=> void;
|
||||
onstatechange: (event: Event)=> void;
|
||||
onicechange: (event: Event)=> void;
|
||||
onicecandidate: (event: RTCIceCandidateEvent)=> void;
|
||||
onidentityresult: (event: Event)=> void;
|
||||
createOffer(successCallback: RTCSessionDescriptionCallback, failureCallback?: RTCPeerConnectionErrorCallback, constraints?: MediaConstraints): void;
|
||||
createAnswer(successCallback: RTCSessionDescriptionCallback, failureCallback?: RTCPeerConnectionErrorCallback, constraints?: MediaConstraints): void;
|
||||
setLocalDescription(description: RTCSessionDescription, successCallback?: RTCVoidCallback, failureCallback?: RTCPeerConnectionErrorCallback): void;
|
||||
localDescription: RTCSessionDescription;
|
||||
setRemoteDescription(description: RTCSessionDescription, successCallback?: RTCVoidCallback, failureCallback?: RTCPeerConnectionErrorCallback): void;
|
||||
remoteDescription: RTCSessionDescription;
|
||||
signalingState: RTCSignalingState;
|
||||
updateIce(configuration?: RTCConfiguration, constraints?: MediaConstraints): void;
|
||||
addIceCandidate(candidate: RTCIceCandidate): void;
|
||||
iceGatheringState: RTCIceGatheringState;
|
||||
iceConnectionState: RTCIceConnectionState;
|
||||
getLocalStreams(): MediaStream[];
|
||||
getRemoteStreams(): MediaStream[];
|
||||
createDataChannel(label?: string, dataChannelDict?: RTCDataChannelInit): RTCDataChannel;
|
||||
ondatachannel: (event: Event)=> void;
|
||||
addStream(stream: MediaStream, constraints?: MediaConstraints): void;
|
||||
removeStream(stream: MediaStream): void;
|
||||
close(): void;
|
||||
onnegotiationneeded: (event: Event)=> void;
|
||||
onconnecting: (event: Event)=> void;
|
||||
onopen: (event: Event)=> void;
|
||||
onaddstream: (event: RTCMediaStreamEvent)=> void;
|
||||
onremovestream: (event: RTCMediaStreamEvent)=> void;
|
||||
onstatechange: (event: Event)=> void;
|
||||
onicechange: (event: Event)=> void;
|
||||
onicecandidate: (event: RTCIceCandidateEvent)=> void;
|
||||
onidentityresult: (event: Event)=> void;
|
||||
}
|
||||
var RTCPeerConnection: {
|
||||
prototype: RTCPeerConnection;
|
||||
new (configuration: RTCConfiguration, constraints?: MediaConstraints): RTCPeerConnection;
|
||||
prototype: RTCPeerConnection;
|
||||
new (configuration: RTCConfiguration, constraints?: MediaConstraints): RTCPeerConnection;
|
||||
}
|
||||
|
||||
interface RTCIceCandidate {
|
||||
candidate?: string;
|
||||
sdpMid?: string;
|
||||
sdpMLineIndex?: number;
|
||||
candidate?: string;
|
||||
sdpMid?: string;
|
||||
sdpMLineIndex?: number;
|
||||
}
|
||||
var RTCIceCandidate: {
|
||||
prototype: RTCIceCandidate;
|
||||
new (candidateInitDict?: RTCIceCandidate);
|
||||
prototype: RTCIceCandidate;
|
||||
new (candidateInitDict?: RTCIceCandidate);
|
||||
}
|
||||
|
||||
interface RTCIceCandidateInit {
|
||||
candidate: string;
|
||||
sdpMid: string;
|
||||
sdpMLineIndex: number;
|
||||
candidate: string;
|
||||
sdpMid: string;
|
||||
sdpMLineIndex: number;
|
||||
}
|
||||
var RTCIceCandidateInit:{
|
||||
prototype: RTCIceCandidateInit;
|
||||
new (): RTCIceCandidateInit;
|
||||
prototype: RTCIceCandidateInit;
|
||||
new (): RTCIceCandidateInit;
|
||||
}
|
||||
|
||||
interface PeerConnectionIceEvent {
|
||||
peer: RTCPeerConnection;
|
||||
candidate: RTCIceCandidate;
|
||||
peer: RTCPeerConnection;
|
||||
candidate: RTCIceCandidate;
|
||||
}
|
||||
var PeerConnectionIceEvent: {
|
||||
prototype: PeerConnectionIceEvent;
|
||||
new (): PeerConnectionIceEvent;
|
||||
prototype: PeerConnectionIceEvent;
|
||||
new (): PeerConnectionIceEvent;
|
||||
}
|
||||
|
||||
interface RTCPeerConnectionConfig {
|
||||
iceServers: RTCIceServer[];
|
||||
iceServers: RTCIceServer[];
|
||||
}
|
||||
var RTCPeerConnectionConfig: {
|
||||
prototype: RTCPeerConnectionConfig;
|
||||
new (): RTCPeerConnectionConfig;
|
||||
prototype: RTCPeerConnectionConfig;
|
||||
new (): RTCPeerConnectionConfig;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user