Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
martinratinaud committed Feb 3, 2025
1 parent 343a623 commit 9911948
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/typescript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export function nonEmptyArray<T>(array: T[]) {
export type RequiredFields<T, K extends keyof T> = Omit<T, K> & Required<Pick<T, K>>;

/**
* Converts types for frontend when type comes from kysely
* Converts types for frontend when types comes from kysely
*/
export type FrontendType<T> = {
[K in keyof T]: T[K] extends Timestamp ? string : T[K];
Expand Down

0 comments on commit 9911948

Please sign in to comment.