Merge branch 'main' into friends-list
This commit is contained in:
commit
457405186a
12 changed files with 347 additions and 30 deletions
|
@ -44,7 +44,8 @@ export interface MessageResponse {
|
|||
channel_uuid: string,
|
||||
user_uuid: string,
|
||||
message: string,
|
||||
user: UserResponse
|
||||
reply_to: string | null,
|
||||
user: UserResponse,
|
||||
}
|
||||
|
||||
export interface InviteResponse {
|
||||
|
@ -84,3 +85,8 @@ export interface ScrollPosition {
|
|||
offsetTop: number,
|
||||
offsetLeft: number
|
||||
}
|
||||
|
||||
export interface ContextMenuItem {
|
||||
name: string,
|
||||
callback: (...args: any[]) => any;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue