You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
327 B
15 lines
327 B
import { apiRequestGet } from 'mastodon/api'; |
|
import type { ApiAccountJSON } from 'mastodon/api_types/accounts'; |
|
|
|
export const apiGetDirectory = ( |
|
params: { |
|
order: string; |
|
local: boolean; |
|
offset?: number; |
|
}, |
|
limit = 20, |
|
) => |
|
apiRequestGet<ApiAccountJSON[]>('v1/directory', { |
|
...params, |
|
limit, |
|
});
|
|
|