TelegramPWA/src/global/helpers/localSearch.ts
2022-03-19 21:19:11 +01:00

4 lines
107 B
TypeScript

export function buildChatThreadKey(chatId: string, threadId: number) {
return `${chatId}_${threadId}`;
}