UNPKG

4nm

Version:

TypeScript reimplementation of Telegram's official library for communicating with Telegram Web Apps.

11 lines (10 loc) 255 B
/** * Converts settable color key to key of ThemeParams. * @param key - key to convert. */ export function toThemeParamsKey(key) { if (key === 'bg_color') { return 'backgroundColor'; } return 'secondaryBackgroundColor'; }