Type for data that can be entered into presence as an object literal.
Example
constfoo: PresenceData = { bar: { baz:1 } }
Example
// Defining a custom type for presence data. It must be a JSON serializable object. interfaceMyPresenceData { [key: string]: JsonValue; // Type check for JSON compatibility. foo: string; bar: { baz: string; } }
Type for data that can be entered into presence as an object literal.