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
Tested version: 0.16.3
> require('oxc-transform').isolatedDeclaration('hello.ts', 'export let foo!: { <T>(t: T): void }') { sourceText: 'export declare let foo: {(t: T): void};\n', errors: [] }
Actual: export declare let foo: {(t: T): void}; Expected: export declare let foo: {<T>(t: T): void};
export declare let foo: {(t: T): void};
export declare let foo: {<T>(t: T): void};
The text was updated successfully, but these errors were encountered:
fix(codegen): missing TypeParamters in TSCallSignature (#4021)
6254a41
close: #4015
Successfully merging a pull request may close this issue.
Tested version: 0.16.3
Actual:
export declare let foo: {(t: T): void};
Expected:
export declare let foo: {<T>(t: T): void};
The text was updated successfully, but these errors were encountered: