eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
11 lines (10 loc) • 749 B
TypeScript
import type { ChannelAudience } from "#shared/channel-audience.js";
import type { TelegramInstrumentationMetadata } from "#public/channels/telegram/index.js";
import type { TelegramChannelState } from "#public/channels/telegram/telegramChannel.js";
import type { AudienceContext } from "#shared/conversation-context.js";
export declare function telegramInstrumentationMetadata(state: TelegramChannelState): TelegramInstrumentationMetadata;
export declare function telegramAudience(state: TelegramChannelState): ChannelAudience;
export declare const telegramInstrumentation: {
readonly audience: (input: AudienceContext<TelegramChannelState>) => "private" | "public" | "unknown";
readonly metadata: typeof telegramInstrumentationMetadata;
};