-
Notifications
You must be signed in to change notification settings - Fork 30.2k
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
[@types/node] missing cursorTo()
, moveCursor()
in process.stdout
#31505
Comments
@basarat This can be closed, also is there an alias I can ping to get any ts contributor? |
I haven't been active here for quite a while. Just jumped in because your messages started with an You could ping
@jinliming2 Can I have an example code that should work so I can test that it is indeed done. Don't think the following is valid: process.stdout.moveCursor;
process.stdout.cursorTo; |
They are, I validated this before adding the typings. |
I made a code sandbox : https://codesandbox.io/s/romantic-panini-ypmq0?fontsize=14 process.stdout; // no error
process.stdout.moveCursor; // TS Error: Property moveCursor does not exist on WriteStream
process.stdout.cursorTo; // TS Error : Property cursorTo does not exist on WriteStream Let me know if I've missed something (likely) 🌹 |
Uhh, that's odd, let me backtrack this. |
I'm able to reproduce this problem with |
@SimonSchick fwiw these should be optional on
|
Hi thread, we're moving DefinitelyTyped to use GitHub Discussions for conversations the To help with the transition, we're closing all issues which haven't had activity in the last 6 months, which includes this issue. If you think closing this issue is a mistake, please pop into the TypeScript Community Discord and mention the issue in the |
Missing
cursorTo()
,moveCursor()
inprocess.stdout
@types/xxxx
package and had problems.Definitions by:
inindex.d.ts
) so they can respond.The text was updated successfully, but these errors were encountered: