@observertc/schemas
Version:
ObserveRTC Library for Schemas
18 lines • 377 B
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;
};
//# sourceMappingURL=Report.d.ts.map