Skip to content

Commit

Permalink
📈 export deep partial
Browse files Browse the repository at this point in the history
  • Loading branch information
hemedani committed Jun 9, 2024
1 parent 9e916cf commit 26a0f66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export const generateSchemTypes = async (
`;

str = str + `
type DeepPartial<T> = {
export type DeepPartial<T> = {
[P in keyof T]?: T[P] extends object ? DeepPartial<T[P]> : T[P];
};
Expand Down

0 comments on commit 26a0f66

Please sign in to comment.