Skip to content

Commit

Permalink
fix(dsv): type of processRow
Browse files Browse the repository at this point in the history
  • Loading branch information
chika3742 committed Sep 9, 2023
1 parent 0278630 commit 19ad8c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/dsv/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ interface RollupDsvOptions {
* The function can either manipulate the passed row, or return an entirely new row object.
* @default undefined
*/
processRow?: null | ((row: DSVRowString, id: string) => DSVRowString | undefined);
processRow?: null | ((row: DSVRowString, id: string) => object | void);
}

/**
Expand Down

0 comments on commit 19ad8c5

Please sign in to comment.