We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import * as
export * as
Bug report Using import * as and or export * as results in an empty output d.ts file.
d.ts
Input code one.ts
export class One {}
two.ts
export class Two {}
combine.ts
import * as One from "./one"; import * as Two from "./two"; export { One, Two };
Expected output
// Generated by dts-bundle-generator v7.2.0 declare module One { export class One { } } declare module Two { export class Two { } } export {};
Actual output
// Generated by dts-bundle-generator v7.2.0 export {};
Additional context Dts-bundle-generator version: 7.2.0 tsconfig.json:
{ "compilerOptions": { "strict": false, "noImplicitAny": true, "rootDir": "./", "target": "es2017", "outDir": "dist", "declaration": true, "moduleResolution": "node", "preserveConstEnums": true, "typeRoots": ["./types"] }, "include": ["src"], "exclude": ["node_module"] }
The text was updated successfully, but these errors were encountered:
Duplicate of #134
Sorry, something went wrong.
No branches or pull requests
Bug report
Using
import * as
and orexport * as
results in an empty outputd.ts
file.Input code
one.ts
two.ts
combine.ts
Expected output
Actual output
Additional context
Dts-bundle-generator version: 7.2.0
tsconfig.json:
The text was updated successfully, but these errors were encountered: