import type { LocalUserSortType } from "./LocalUserSortType"; import type { PaginationCursor } from "./PaginationCursor"; export type AdminListUsers = { banned_only?: boolean; page_cursor?: PaginationCursor; sort?: LocalUserSortType; limit?: number; };