UNPKG

395 BTypeScriptView Raw
1/**
2 * Base telemetry interface encapsulating coming properties
3 */
4export interface Telemetry {
5 /**
6 * Telemetry time stamp. When it is not specified, current timestamp will be used.
7 */
8 time?: Date;
9 /**
10 * Additional data used to filter events and metrics in the portal. Defaults to empty.
11 */
12 properties?: {
13 [key: string]: any;
14 };
15}