mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 04:29:21 +00:00
17 lines
359 B
TypeScript
17 lines
359 B
TypeScript
/**
|
|
* Group typings
|
|
*
|
|
* @author Pierre Hubert
|
|
*/
|
|
|
|
declare interface AdvancedGroupInfo extends Group {
|
|
is_members_list_public: Boolean,
|
|
time_create: Number,
|
|
description: String,
|
|
url: String,
|
|
number_likes: Number,
|
|
is_liking: Boolean,
|
|
conversations: Conversation[],
|
|
}
|
|
|
|
declare interface GroupSettings extends AdvancedGroupInfo {} |