loop-modules
Version:
Shared modules for the Loop product suite.
20 lines (16 loc) • 376 B
text/typescript
export interface LoopSessionSharePayload {
/**
* The identity of the LoopSession object to share
*
* @type {string}
* @memberOf LoopSessionSharePayload
*/
session: string;
/**
* The identities of users to share the session with
*
* @type {string[]}
* @memberOf LoopSessionSharePayload
*/
users: string[];
}