fix: inline telegram thread scope type
This commit is contained in:
parent
1d7dd5f261
commit
0bc8a592a6
1 changed files with 1 additions and 3 deletions
|
|
@ -12,11 +12,9 @@ import { formatLocationText, type NormalizedLocation } from "../../channels/loca
|
||||||
|
|
||||||
const TELEGRAM_GENERAL_TOPIC_ID = 1;
|
const TELEGRAM_GENERAL_TOPIC_ID = 1;
|
||||||
|
|
||||||
export type TelegramThreadScope = "dm" | "forum" | "none";
|
|
||||||
|
|
||||||
export type TelegramThreadSpec = {
|
export type TelegramThreadSpec = {
|
||||||
id?: number;
|
id?: number;
|
||||||
scope: TelegramThreadScope;
|
scope: "dm" | "forum" | "none";
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue