From d5bcbf54f9460e9e3ab6734d7efccc579deab839 Mon Sep 17 00:00:00 2001 From: Nuckyz <61953774+Nuckyz@users.noreply.github.com> Date: Wed, 22 May 2024 06:17:31 -0300 Subject: [PATCH] fix --- src/webpack/wreq.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webpack/wreq.d.ts b/src/webpack/wreq.d.ts index 517ad4b99..2dbd31150 100644 --- a/src/webpack/wreq.d.ts +++ b/src/webpack/wreq.d.ts @@ -98,7 +98,7 @@ type WebpackRequire = ((moduleId: PropertyKey) => Module) & { * The ensure chunk function, it ensures a chunk is loaded, or loads if needed. * Internally it uses the handlers in {@link WebpackRequire.f} to load/ensure the chunk is loaded. */ - e: (chunkId: string | number) => Promise; + e: (chunkId: string | number) => Promise; /** Get the filename name for the css part of a chunk */ k: (chunkId: string | number) => `${chunkId}.css`; /** Get the filename for the js part of a chunk */