Skip to content

Commit

Permalink
fix: fix APIQueryMessage and WebsiteQueryMessage types
Browse files Browse the repository at this point in the history
  • Loading branch information
dominik-korsa committed Jul 30, 2020
1 parent 8c2c8a5 commit 9c9e431
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export interface APIQueryMessage {
token: string;
protocol: 'http:' | 'https:';
hostname: string;
port?: number;
port: number | null;
pathname: string;
search: string;
subscribe: boolean;
Expand All @@ -17,7 +17,7 @@ export interface WebsiteQueryMessage {
reCaptchaResponse: string;
protocol: 'http:' | 'https:';
hostname: string;
port?: number;
port: number | null;
pathname: string;
search: string;
subscribe: boolean;
Expand Down

0 comments on commit 9c9e431

Please sign in to comment.