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
module m1 { export class C2 implements m3.i3 { public get p1() { return null; } public f55() { return "Hello world"; } } module m3 { export interface i3 { f55(): string; } } class C1 { } }
Expected: Exported class 'C2' implements private interface 'm3.i3'.
Actual: no error
The text was updated successfully, but these errors were encountered:
This should not be an error for normal codegen. There is no leakage of the knowledge that the class implements this interface outside of the module.
It should only be an error .d.ts (or we don't emit the private implements clause)
Sorry, something went wrong.
Updated spec text.
mhegazy
Successfully merging a pull request may close this issue.
Expected: Exported class 'C2' implements private interface 'm3.i3'.
Actual: no error
The text was updated successfully, but these errors were encountered: