Skip to content

Commit

Permalink
move symbol map to the end of the line
Browse files Browse the repository at this point in the history
  • Loading branch information
Ha-limLee committed May 13, 2024
1 parent 37c47ee commit 214ee2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/lodash/common/object.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1328,7 +1328,7 @@ declare module "../index" {
* _.has(other, 'a');
* // => false
*/
has<T, K extends PropertyName>(object: T, path: K): object is T & {[uniqueSymbol]: unknown} & { [P in K]: P extends keyof T ? T[P] : Record<string, unknown> extends T ? T[keyof T] : unknown};
has<T, K extends PropertyName>(object: T, path: K): object is T & { [P in K]: P extends keyof T ? T[P] : Record<string, unknown> extends T ? T[keyof T] : unknown} & {[uniqueSymbol]: unknown};
has<T>(object: T, path: PropertyPath): boolean;
}
interface LoDashImplicitWrapper<TValue> {
Expand Down

0 comments on commit 214ee2d

Please sign in to comment.