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 d0e93bd commit 4b53de5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdks/rollbar.js/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 4b53de5

Please sign in to comment.