@vonage/video
Version:
Package to interact with the Vonage Video API (Not OpenTok Compatible)
14 lines • 383 B
TypeScript
/**
* Represents a signal containing type and data properties.
*/
export 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;
};
//# sourceMappingURL=Singal.d.ts.map