feat: add search users event
All checks were successful
Publish / Publish Job (push) Successful in 2m28s

This commit is contained in:
Дмитрий
2026-04-10 18:03:33 +03:00
parent aa1cf43e09
commit 61c5f3cb84
2 changed files with 9 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
export interface SearchUsersEvent {
profileId: string;
username: string;
email?: string;
phone?: string;
fullName?: string;
customStatusText?: string;
}