mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 04:29:21 +00:00
13 lines
239 B
TypeScript
13 lines
239 B
TypeScript
|
/**
|
||
|
* User membreship typings
|
||
|
*
|
||
|
* @author Pierre Hubert
|
||
|
*/
|
||
|
|
||
|
declare interface UserMembership {
|
||
|
type: "group"|"friend"|"conversation",
|
||
|
id ?: number,
|
||
|
friend ?: Friend,
|
||
|
last_activity ?: number,
|
||
|
conv ?: Conversation
|
||
|
}
|