Skip to content

Commit

Permalink
fix: πŸ› Fixed users list output type in the sdk-db package
Browse files Browse the repository at this point in the history
  • Loading branch information
kostysh committed Feb 19, 2024
1 parent 4bb3274 commit 9d84fe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/db/src/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export type SafeUserType = z.infer<typeof SafeUserSchema>;
* Type definition for sanitized Users records list,
* inferred from UsersListOutputSchema.
*/
export type UsersListOutputSchema = z.infer<typeof UsersListOutputSchema>;
export type UsersListOutputSchemaType = z.infer<typeof UsersListOutputSchema>;

/**
* Interface defining the properties of UsersDb initialization options.
Expand Down

0 comments on commit 9d84fe9

Please sign in to comment.