What type to use for a batch item

I'm trying to type the array used to hold queries to be batched with the batch API.

const queries: ??? = [];

queries.push(db.query.users.findMany...)

await db.batch(queries);


What should I put for ???
Was this page helpful?