chore: add claude agents
All checks were successful
Deploy to VPS (dist) / deploy (push) Successful in 1m31s

This commit is contained in:
Hewston Fox
2026-03-18 01:50:26 +02:00
parent 16b85048f9
commit 5f721a4f3a
5 changed files with 171 additions and 1 deletions

View File

@@ -44,7 +44,7 @@ const isPromise = <T>(value: T | Promise<T>): value is Promise<T> =>
const promisify = <T>(value: T | Promise<T>): Promise<T> =>
isPromise(value) ? value : Promise.resolve(value);
const isTMA = () => tg.retrieveLaunchParams().tgWebAppStartParam !== MOCKED_START_PARAM;
const isTMA = () => tg.retrieveLaunchParams()?.tgWebAppStartParam !== MOCKED_START_PARAM;
const fallbackImplementation = <
T extends ((...args: any) => any) & WithChecks<any>,