Skip to content

Commit

Permalink
fix: add options parameter to _sanitizePath definition
Browse files Browse the repository at this point in the history
  • Loading branch information
sherwinski authored and sherwinski committed Feb 25, 2022
1 parent fe577c8 commit 8fee52e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ declare class ImgixClient {
params?: {},
options?: { disablePathEncoding?: boolean },
): string;
_sanitizePath(path: string): string;
_sanitizePath(path: string, options?: { encode?: boolean }): string;
_buildParams(params: {}): string;
_signParams(path: string, queryParams?: {}): string;
buildSrcSet(path: string, params?: {}, options?: SrcSetOptions): string;
Expand Down

0 comments on commit 8fee52e

Please sign in to comment.