@vonage/video
Version:
Package to interact with the Vonage Video API (Not OpenTok Compatible)
16 lines (14 loc) • 365 B
TypeScript
/**
* Represents a signal containing type and data properties.
*/
type Signal = {
/**
* The type of the signal, which can be a custom string identifying the signal type.
*/
type: string;
/**
* The data associated with the signal, which can be any string data related to the signal.
*/
data: string;
};
export type { Signal };