Skip to content

Commit

Permalink
fix: jsdoc arraybuffer again
Browse files Browse the repository at this point in the history
  • Loading branch information
EETagent committed Feb 25, 2024
1 parent 99fe875 commit 85837a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/trpc/server/routes/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const users = t.router({
csv: t.procedure.use(adminAuth).query(async () => exportCsv()),
/**
* @description Export users to xlsx, Only SSR
* @returns Promise<ArrayBuffer>
* @returns {Promise<number>} ArrayBuffer, fallback array of 8-bit unsigned int
*/
xlsx: t.procedure.use(adminAuth).query(async () => exportXlsx()),
resetPassword: t.procedure
Expand Down

0 comments on commit 85837a9

Please sign in to comment.