Skip to content

Commit 3e34858

Browse files
authored
(fix) allow param values in slsw.lib.options (#1076)
The newly added param value is typed as a string array, see serverless/serverless#9817
1 parent a32276d commit 3e34858

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ declare module 'serverless-webpack' {
99
entries: {
1010
[name: string]: string | string[];
1111
};
12-
options: { [name: string]: string | boolean | number };
12+
options: { [name: string]: string | boolean | number } & { param?: string[] };
1313
};
1414
}

0 commit comments

Comments
 (0)