-
Notifications
You must be signed in to change notification settings - Fork 282
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
missing possible parameters in client methods #1247
Comments
This is supposed to be typing's mistake. But I can see that it should be fixed on #1186 |
Please use the latest async await /promise style. The callback style is deprecated. |
i can confirm this is still the case,
putOpts in setObjectTagging is now not optional? it was optional in minio 7 and in the docs |
exactly same here! |
We will update it in a new PR. feel free to send a PR too. async setObjectTagging(bucketName: string, objectName: string, tags: Tags, putOpts: TaggingOpts) { |
Hi,
I am experiencing a small issue with the minio client types. I am trying to call a few functions like
getObject
,listObjects
andcopyObject
but the type definitions seem to be incomplete.As an example I am using
The underlying implementation supports the call, but the type does not, assuming that I always use a callback for the 3rd parameter. Am I missing something obvious here, or is it just a bug in the types definition? If it is, I can possibly send a PR.
The text was updated successfully, but these errors were encountered: