Skip to content

Commit

Permalink
fix: add missing types to _buildSrcSet
Browse files Browse the repository at this point in the history
  • Loading branch information
luqven committed Jul 22, 2021
1 parent ffe680b commit b0806cf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ declare class ImgixClient {
_sanitizePath(path: string): string;
_buildParams(params: {}): string;
_signParams(path: string, queryParams?: {}): string;
static _buildSrcSet(path: string, params?: {}, options?: {}): string;
static _buildSrcSet(
path: string,
params?: {},
srcSetOptions?: {},
clientOptions?: {},
): string;
buildSrcSet(path: string, params?: {}, options?: SrcSetOptions): string;
_buildSrcSetPairs(path: string, params?: {}, options?: SrcSetOptions): string;
_buildDPRSrcSet(path: string, params?: {}, options?: SrcSetOptions): string;
Expand Down

0 comments on commit b0806cf

Please sign in to comment.