Skip to content

Commit

Permalink
fix type on queryParams
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryce Godfrey committed May 4, 2018
1 parent 62796de commit 018993f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/scoped-jakarta/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ declare namespace sn {
export interface IRESTAPIRequest<T> {
body: IRESTAPIRequestBody<T>;
pathParams: { [paramName: string]: string };
queryParams: { [paramName: string]: Array<string> };
queryParams: { [paramName: string]: string|number|boolean };
queryString: string;
uri: string;
url: string;
Expand Down

0 comments on commit 018993f

Please sign in to comment.