Skip to content

Commit

Permalink
update the to a
Browse files Browse the repository at this point in the history
  • Loading branch information
dario-piotrowicz committed Jan 8, 2025
1 parent 5a02a18 commit e4d2892
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/wrangler/src/type-generation/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ function collectAllVars(
* `['false', true]` returns `(string|boolean)[]`,
*
* @param array the target array
* @returns the string representing the types of such array
* @returns a string representing the types of such array
*/
function typeofArray(array: unknown[]): string {
const typesInArray = [...new Set(array.map((item) => typeof item))].sort();
Expand Down

0 comments on commit e4d2892

Please sign in to comment.