Hey is a decentralized and permissionless social media app built with Lens Protocol 🌿

fix(api): tighten db param typing (#6022)

authored by yoginth.com and committed by

GitHub 4df98510 83b5b538

+1 -1
+1 -1
apps/api/src/utils/lensPg.ts
··· 14 14 pg: IMain<unknown, pg.IClient>; 15 15 } 16 16 17 - type DatabaseParams = null | Record<string, any>; 17 + type DatabaseParams = null | Record<string, unknown>; 18 18 type DatabaseQuery = string; 19 19 20 20 class Database {