We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7317a41 commit 9d8e7c3Copy full SHA for 9d8e7c3
src/module-declaration.ts
@@ -63,9 +63,6 @@ export const generateModuleDeclaration = (
63
) {
64
extendsInfo = ` extends ${isClass ? 'NodeEventEmitter' : 'NodeJS.EventEmitter'}`;
65
}
66
- if (module.name.toLowerCase() === 'session' && isStaticVersion) {
67
- console.log({ isStaticVersion, instanceModuleForStaticVersion, extendsInfo });
68
- }
69
if (extendsInfo) {
70
moduleAPI.push(
71
`${isClass ? 'class' : 'interface'} ${_.upperFirst(module.name)}${extendsInfo} {`,
0 commit comments