Skip to content

Commit

Permalink
Merge pull request #227 from kinde-oss/peter/fix-kindeuser-generic-type
Browse files Browse the repository at this point in the history
types: allow void for generic type
  • Loading branch information
DanielRivers authored Oct 28, 2024
2 parents cbdfe85 + b1edfaa commit 22cea11
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 22cea11

Please sign in to comment.