-
Notifications
You must be signed in to change notification settings - Fork 30.4k
New issue
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
Remove a few export
s
#165158
Remove a few export
s
#165158
Conversation
readonly onDidSendMessage: Event<DebugProtocol.Message>; | ||
handleMessage(message: DebugProtocol.Message): void; | ||
} | ||
|
||
export interface IDebugAdapterImpl { | ||
interface IDebugAdapterImpl { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like this and IDebugAdapterInlineImpl
should be exported since they are part of IAdapterDescriptor
which is exported
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And IDebugAdapterExecutableOptions
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed, the ts-unused-exports
tool could be smarter and omit "indirect" exports...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've reverted the mentioned symbols.
48adc2e
to
137e79c
Compare
Ref #164941