mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 12:39:22 +00:00
13 lines
286 B
TypeScript
13 lines
286 B
TypeScript
|
/**
|
||
|
* Conversations typings
|
||
|
*
|
||
|
* @author Pierre Hubert
|
||
|
*/
|
||
|
|
||
|
declare interface ConversationSettingsFormElements {
|
||
|
rootElem: HTMLElement,
|
||
|
usersElement: HTMLElement,
|
||
|
conversationNameInput: HTMLElement,
|
||
|
allowEveryoneToAddMembers: HTMLElement,
|
||
|
followConversationInput: HTMLElement,
|
||
|
}
|