Skip to content

Commit

Permalink
feat(api-client): add getParams method to Query class
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelSzmarowski committed Jul 12, 2024
1 parent 8c9f272 commit 2071a98
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/api-client/src/odsql/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ export class Query {
this.path = path;
}

getParams(): Record<string, string | string[]> {
return this.params;
}

getPath(): string {
return this.path;
}
Expand Down

0 comments on commit 2071a98

Please sign in to comment.