@observertc/schemas
Version:
ObserveRTC Library for Schemas
21 lines (17 loc) • 307 B
text/typescript
/**
* A multiplexed Report object wraps an encoded report in bytes format
*/
export type Report = {
/**
* The type of the report
*/
type: string;
/**
* The payload of contans the actual report
*/
payload: string;
/**
* The version of the schema the payload holds
*/
schemaVersion?: string;
}