Skip to content

Commit

Permalink
Fix property 'detail' of PerformanceEntry
Browse files Browse the repository at this point in the history
This spelling mistake in a property name has been fixed in node.js per nodejs/node#40019
  • Loading branch information
cafca committed Sep 12, 2021
1 parent 22a636d commit aee866a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/node/perf_hooks.d.ts
Expand Up @@ -84,7 +84,7 @@ declare module 'perf_hooks' {
* Additional detail specific to the `entryType`.
* @since v16.0.0
*/
readonly details?: NodeGCPerformanceDetail | unknown | undefined; // TODO: Narrow this based on entry type.
readonly detail?: NodeGCPerformanceDetail | unknown | undefined; // TODO: Narrow this based on entry type.
}
/**
* _This property is an extension by Node.js. It is not available in Web browsers._
Expand Down

0 comments on commit aee866a

Please sign in to comment.