Skip to content

Commit

Permalink
types: allow void for generic type
Browse files Browse the repository at this point in the history
  • Loading branch information
peterphanouvong committed Oct 28, 2024
1 parent cbdfe85 commit b1edfaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export type KindeUserBase = {
phone_number?: string | null;
};

export interface KindeUser<T> extends KindeUserBase {
export interface KindeUser<T = void> extends KindeUserBase {
properties?: KindeUserProperties<T>;
}

Expand Down

0 comments on commit b1edfaa

Please sign in to comment.