Skip to content

Commit

Permalink
fix(profile): fix type for string array & number array value
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff-tbd committed Nov 24, 2023
1 parent 636982c commit e35e35f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export type Callback = (error: Error | null, user: User | null) => void;
* @see https://developers.channel.io/docs/web-user-object#profile
*/
export interface Profile {
[key: string]: string | number | boolean | null;
[key: string]: string | string[] | number | number[] | boolean | null;
}

/**
Expand Down

0 comments on commit e35e35f

Please sign in to comment.