Skip to content

Commit

Permalink
csv: fix iterate function declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaliy-art committed Feb 24, 2024
1 parent 2a9a4d9 commit d972aa3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tarantoolscript",
"version": "0.6.0",
"version": "0.6.1",
"author": "Vitaliy Artemov [email protected]",
"description": "TypeScript definitions for Tarantool Lua API.",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/builtin/csv/Csv.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ export declare function dump(csvTable: unknown[], options?: CsvOptions, writable
* @param options An options table.
* @returns Lua iterator.
*/
export declare function iterate(input: CsvReadable, options?: CsvOptions): LuaIterable<LuaMultiReturn<number, unknown[]>>
export declare function iterate(input: CsvReadable, options?: CsvOptions): LuaIterable<LuaMultiReturn<[number, unknown[]]>>

0 comments on commit d972aa3

Please sign in to comment.