export async function withTimeout(fn: any, ...a: any[]) { return fn(); } export const TIMEOUTS: Record = new Proxy({}, { get: () => 30000 });