mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-12 14:03:16 -08:00
15 lines
327 B
TypeScript
15 lines
327 B
TypeScript
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,
|
|
});
|