#### Environment details - OS: n/a - Node.js version: n/a - npm version: n/a - `@google-cloud/storage` version: 7.6.0 #### Steps to reproduce 1. Install the library 2. Observe the Promise-ified return type of file.move The `MoveResponse` type (defined at https://github.com/googleapis/nodejs-storage/blob/v7.6.0/src/file.ts#L266) is just `[unknown]`. This doesn't seem correct, and is certainly unhelpful. From the definition of `MoveCallback` (at https://github.com/googleapis/nodejs-storage/blob/v7.6.0/src/file.ts#L268-L274), it seems like it _should_ be something like `[File, unknown]` matching `destinationFile, apiResponse` for the non-error version of the callback args.
Environment details
@google-cloud/storageversion: 7.6.0Steps to reproduce
The
MoveResponsetype (defined at https://github.com/googleapis/nodejs-storage/blob/v7.6.0/src/file.ts#L266) is just[unknown]. This doesn't seem correct, and is certainly unhelpful.From the definition of
MoveCallback(at https://github.com/googleapis/nodejs-storage/blob/v7.6.0/src/file.ts#L268-L274), it seems like it should be something like[File, unknown]matchingdestinationFile, apiResponsefor the non-error version of the callback args.