Skip to content

Commit

Permalink
(fix) allow param values in slsw.lib.options (#1076)
Browse files Browse the repository at this point in the history
The newly added param value is typed as a string array, see serverless/serverless#9817
  • Loading branch information
coyoteecd committed Mar 24, 2022
1 parent a32276d commit 3e34858
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ declare module 'serverless-webpack' {
entries: {
[name: string]: string | string[];
};
options: { [name: string]: string | boolean | number };
options: { [name: string]: string | boolean | number } & { param?: string[] };
};
}

0 comments on commit 3e34858

Please sign in to comment.