Skip to content

Commit

Permalink
typescript: make type for person.id nullable (#1074)
Browse files Browse the repository at this point in the history
  • Loading branch information
waltjones authored Dec 20, 2022
1 parent 5e29c9c commit 23ade88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ declare namespace Rollbar {
*/
export interface Payload {
person?: {
id: string | DeprecatedNumber;
id: string | DeprecatedNumber | null;
username?: string;
email?: string;
[property: string]: any;
Expand Down

0 comments on commit 23ade88

Please sign in to comment.