From aee866add66a0158f880eee3f4427ea5481f7fd3 Mon Sep 17 00:00:00 2001 From: Vincent Ahrend Date: Sun, 12 Sep 2021 19:11:13 +0200 Subject: [PATCH] Fix property 'detail' of PerformanceEntry This spelling mistake in a property name has been fixed in node.js per https://github.com/nodejs/node/pull/40019 --- types/node/perf_hooks.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/node/perf_hooks.d.ts b/types/node/perf_hooks.d.ts index 02f330c7b1d468..5bfb931c19858b 100644 --- a/types/node/perf_hooks.d.ts +++ b/types/node/perf_hooks.d.ts @@ -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._