fix: inline telegram thread scope type

This commit is contained in:
Ayaan Zaidi
2026-02-02 09:07:25 +05:30
committed by Ayaan Zaidi
parent 1d7dd5f261
commit 0bc8a592a6

View File

@@ -12,11 +12,9 @@ import { formatLocationText, type NormalizedLocation } from "../../channels/loca
const TELEGRAM_GENERAL_TOPIC_ID = 1;
export type TelegramThreadScope = "dm" | "forum" | "none";
export type TelegramThreadSpec = {
id?: number;
scope: TelegramThreadScope;
scope: "dm" | "forum" | "none";
};
/**