@twilio/voice-react-native-sdk
Version:
Twilio Voice React Native SDK
17 lines (15 loc) • 520 B
text/typescript
/**
* Call custom parameters. If custom parameters are present for a call, then
* it will have this typing.
*
* @remarks
* - `Call`s will have a method to access custom parameters, see
* {@link (Call:class).getCustomParameters}.
* - `CallInvite`s will have a method to access custom parameters for the call
* that is associated with the invite, see
* {@link (CallInvite:class).getCustomParameters}.
*
* @public
*/
export type CustomParameters = Record<string, string>;
export type Uuid = string;