Skip to content
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

Fix: improve GetFilesResponse interface #2466

Merged
merged 5 commits into from
May 14, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/bucket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
ifMetagenerationNotMatch?: number | string;
}

export type GetFilesResponse = [File[], {}, unknown];
export type GetFilesResponse = [File[], (GetFilesOptions | GetFilesCallback) & Partial<Pick<GetFilesOptions, 'pageToken'>>, unknown];

Check failure on line 90 in src/bucket.ts

View workflow job for this annotation

GitHub Actions / lint

Replace `File[],·(GetFilesOptions·|·GetFilesCallback)·&·Partial<Pick<GetFilesOptions,·'pageToken'>>,·unknown` with `⏎··File[],⏎··(GetFilesOptions·|·GetFilesCallback)·&⏎····Partial<Pick<GetFilesOptions,·'pageToken'>>,⏎··unknown,⏎`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can omit GetFilesCallback, query can only be GetFilesOptions or an empty object. It will never get assigned the callback.

Copy link
Contributor Author

@olishevskii olishevskii May 14, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have fixed it.

export interface GetFilesCallback {
(
err: Error | null,
Expand Down
Loading