mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-02-19 10:46:56 +00:00
10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
|
/**
|
||
|
* Messaging types used with SelfServe Component <-> Portal communication
|
||
|
* and Hosted <-> SelfServe Component communication
|
||
|
*/
|
||
|
|
||
|
export enum SelfServeMessageTypes {
|
||
|
TelemetryInfo = "TelemetryInfo",
|
||
|
Notification = "Notification",
|
||
|
}
|