Skip to content

Commit

Permalink
fix(types): 502 is missing _NAME, _MESSAGE, _CLASS
Browse files Browse the repository at this point in the history
  • Loading branch information
chrishelgert authored and wdavidw committed Apr 14, 2022
1 parent c3ee7f8 commit b86e714
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.d.ts
Expand Up @@ -314,9 +314,9 @@ declare namespace httpStatus {
readonly 'NOT_IMPLEMENTED': number;

readonly '502': string;
readonly '_NAME': string;
readonly '_MESSAGE': string;
readonly '_CLASS': string;
readonly '502_NAME': string;
readonly '502_MESSAGE': string;
readonly '502_CLASS': string;
readonly 'BAD_GATEWAY': number;

readonly '503': string;
Expand Down

0 comments on commit b86e714

Please sign in to comment.