17 lines
359 B
TypeScript
Raw Normal View History

2021-03-15 18:04:20 +01:00
/**
* Group typings
*
* @author Pierre Hubert
*/
declare interface AdvancedGroupInfo extends Group {
is_members_list_public: Boolean,
2021-03-15 18:04:20 +01:00
time_create: Number,
description: String,
url: String,
number_likes: Number,
2021-04-05 15:16:37 +02:00
is_liking: Boolean,
conversations: Conversation[],
2021-03-15 18:54:34 +01:00
}
declare interface GroupSettings extends AdvancedGroupInfo {}