-
Notifications
You must be signed in to change notification settings - Fork 21
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
added type declarations #37
Conversation
{ | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
} |
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.
This is vscode ts version setting.
It fixes ts version to workspace's.
Since vscode comes with internal ts, different version of vscode can cause syntactic error.
This reverts commit 93e5114.
|
||
declare class npyjs { | ||
|
||
constructor(opts?: never); |
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.
}; | ||
}; | ||
|
||
export type Parsed = ValueOf<{ |
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.
This is AWESOME, thank you @Ha-limLee for this high-impact contribution — I know a lot of users will be very grateful to have these types! |
Hi @j6k4m8. Appreciate your great works.
I added some type improvements here.
Thanks.
close #32