fix wreq.n typings
Some checks are pending
Sync to Codeberg / codeberg (push) Waiting to run
test / test (push) Waiting to run

This commit is contained in:
Nuckyz 2024-09-17 06:29:48 -03:00
parent 8dc2133ddd
commit a6976a868b
No known key found for this signature in database
GPG key ID: 440BF8296E1C4AD9

View file

@ -102,7 +102,7 @@ export type WebpackRequire = ((moduleId: PropertyKey) => ModuleExports) & {
*/
a: (this: WebpackRequire, module: Module, body: AsyncModuleBody, hasAwaitAfterDependencies?: boolean) => void;
/** getDefaultExport function for compatibility with non-harmony modules */
n: (this: WebpackRequire, module: Module) => () => ModuleExports;
n: (this: WebpackRequire, module: any) => () => ModuleExports;
/**
* Create a fake namespace object, useful for faking an __esModule with a default export.
*