-
Notifications
You must be signed in to change notification settings - Fork 373
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
Improve TypeScript types (part 4) #402
Conversation
@@ -1644,7 +1653,8 @@ class Bucket extends ServiceObject { | |||
}, | |||
(err, resp) => { | |||
if (err) { | |||
callback(err, null, null, resp); | |||
// tslint:disable-next-line:no-any | |||
(callback as any)(err, null, null, resp); |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Side note - my system tests appear to be passing? |
getFiles( | ||
queryOrCallback?: GetFilesOptions|GetFilesCallback, | ||
callback?: GetFilesCallback): void|Promise<[File[]]> { | ||
let query = typeof queryOrCallback === 'object' ? queryOrCallback : {}; |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
For system-test, it's complaining that it couldn't write to
Okay it's not that reason. But the system-test did start failing from commit 9f65f9d |
Samples test has always been flaky on that one test where it complains about unlink |
No description provided.