Skip to content

Commit 4ae3951

Browse files
fix: Add missing offset to v2 SearchParams (#1163)
1 parent 101c7ff commit 4ae3951

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/mastodon/rest/v2/search-repository.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ export interface SearchParams extends DefaultPaginationParams {
1818
readonly excludeUnreviewed?: boolean | null;
1919
/** Only include accounts that the user is following. Defaults to false. */
2020
readonly following?: boolean | null;
21+
/** Skip the first n results. */
22+
readonly offset?: number | null;
2123
}
2224

2325
export interface SearchRepository {

0 commit comments

Comments
 (0)