@twilio/rtc-diagnostics
Version:
Various diagnostics functions to help analyze connections to Twilio
14 lines (13 loc) • 383 B
TypeScript
import { DiagnosticError } from './DiagnosticError';
/**
* @internalapi
* Represents when a test in the Diagnostics SDK is an unknown or unexpected
* state, usually resulting in fatal error.
*/
export declare class InvalidStateError extends DiagnosticError {
/**
* Sets the name to `InvalidStateError`.
* @param message
*/
constructor(message?: string);
}