@telnyx/webrtc
Version:
Telnyx WebRTC Client
39 lines (38 loc) • 1.18 kB
TypeScript
import BaseRequest from './verto/BaseRequest';
import { Login } from './verto/Login';
import { Result } from './verto/Result';
import { VertoMethod } from '../webrtc/constants';
declare class Invite extends BaseRequest {
toString(): VertoMethod;
}
declare class Answer extends BaseRequest {
toString(): VertoMethod;
}
declare class Attach extends BaseRequest {
toString(): VertoMethod;
}
declare class Bye extends BaseRequest {
toString(): VertoMethod;
}
declare class Candidate extends BaseRequest {
toString(): VertoMethod;
}
declare class EndOfCandidates extends BaseRequest {
toString(): VertoMethod;
}
declare class Modify extends BaseRequest {
toString(): VertoMethod;
}
declare class Info extends BaseRequest {
toString(): VertoMethod;
}
declare class Broadcast extends BaseRequest {
toString(): VertoMethod;
}
declare class Subscribe extends BaseRequest {
toString(): VertoMethod;
}
declare class Unsubscribe extends BaseRequest {
toString(): VertoMethod;
}
export { Login, Invite, Answer, Attach, Bye, Candidate, EndOfCandidates, Modify, Info, Broadcast, Subscribe, Unsubscribe, Result, };