|
13 | 13 | * See the License for the specific language governing permissions and |
14 | 14 | * limitations under the License. |
15 | 15 | */ |
16 | | -import { promisifyAll } from '@google-cloud/promisify'; |
17 | | -import { EventEmitter } from 'events'; |
18 | | -import { util } from './util.js'; |
19 | | -import { StorageRequestOptions, StorageTransport } from '../storage-transport.js'; |
| 16 | +import {promisifyAll} from '@google-cloud/promisify'; |
| 17 | +import {EventEmitter} from 'events'; |
| 18 | +import {util} from './util.js'; |
| 19 | +import {StorageRequestOptions, StorageTransport } from '../storage-transport.js'; |
20 | 20 | import { |
21 | 21 | GaxiosError, |
22 | 22 | GaxiosInterceptor, |
23 | 23 | GaxiosOptionsPrepared, |
24 | 24 | GaxiosResponse, |
25 | 25 | } from 'gaxios'; |
26 | | -import type { Bucket } from '../bucket.js'; |
| 26 | +import type {Bucket} from '../bucket.js'; |
27 | 27 |
|
28 | 28 | function isBucket(parent: unknown): parent is Bucket { |
29 | 29 | if (!parent || typeof parent !== 'object') { |
@@ -110,7 +110,7 @@ export interface InstanceResponseCallback<T> { |
110 | 110 | } |
111 | 111 |
|
112 | 112 | // eslint-disable-next-line @typescript-eslint/no-empty-interface |
113 | | -export interface CreateOptions { } |
| 113 | +export interface CreateOptions {} |
114 | 114 | // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unused-vars |
115 | 115 | export type CreateResponse<T> = any[]; |
116 | 116 | export interface CreateCallback<T> { |
@@ -566,6 +566,6 @@ class ServiceObject<T, K extends BaseMetadata> extends EventEmitter { |
566 | 566 | } |
567 | 567 | } |
568 | 568 |
|
569 | | -promisifyAll(ServiceObject, { exclude: ['getRequestInterceptors'] }); |
| 569 | +promisifyAll(ServiceObject, {exclude: ['getRequestInterceptors']}); |
570 | 570 |
|
571 | | -export { ServiceObject }; |
| 571 | +export {ServiceObject}; |
0 commit comments