/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
shared/team-building/types.tsx
35 строк
752 B
chrisnojima-zoom
Version 670 - clean2 (#29122)
08 июн 2026, 19:31
Не верифицирован
08 июн 2026, 19:31
1943197
Код
Авторство
О чём код?
import type * as T from '@/constants/types' export type SearchResult = { contact: boolean userId: string username: string prettyName: string pictureUrl?: string displayLabel: string services: {[K in T.TB.ServiceIdWithContact]?: string} inTeam: boolean isPreExistingTeamMember: boolean isYou: boolean followingState: T.TB.FollowingState isImportButton?: false isSearchHint?: false } export type ImportContactsEntry = { isImportButton: true isSearchHint?: false } export type SearchHintEntry = { isImportButton?: false isSearchHint: true } export type ResultData = SearchResult | ImportContactsEntry | SearchHintEntry export type SearchRecSection = { label: string shortcut: boolean data: Array<ResultData> }