Skip to content

Instantly share code, notes, and snippets.

View Fuchsoria's full-sized avatar

German Fuchsoria

  • Switzerland, Zürich
View GitHub Profile
@Fuchsoria
Fuchsoria / .d.ts
Created April 18, 2022 20:38
Telegram bot web apps: Type definitions for TypeScript (Beta)
declare namespace TG {
type EventType = 'themeChanged' | 'viewportChanged' | 'mainButtonClicked';
type Params = {
text?: string;
color?: string;
text_color?: string;
is_active?: boolean;
is_visible?: boolean;
};