Skip to content

Commit

Permalink
fix: Update _flatten function signature
Browse files Browse the repository at this point in the history
  • Loading branch information
AxiosLeo committed Mar 13, 2024
1 parent 2d7dcbd commit 75f445e
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 @@ -738,7 +738,7 @@ export namespace helper {
}

module obj {
function _flatten(obj: ObjectItem, sep: string): ObjectItem;
function _flatten(obj: ObjectItem, sep?: string): ObjectItem;
function _flatten<T>(obj: T, sep: string): ObjectItem;
function _unflatten(obj: ObjectItem, sep: string): ObjectItem;
function _unflatten<T>(obj: ObjectItem, sep: string): T;
Expand Down

0 comments on commit 75f445e

Please sign in to comment.