I'm trying to type the array used to hold queries to be batched with [the batch API](https://orm.drizzle.team/docs/batch-api). ``` const queries: ??? = []; queries.push(db.query.users.findMany...) await db.batch(queries); ``` What should I put for ???