bigbuffet-rw/packages/pl-api/lib/entities/familiar-followers.ts

21 lines
493 B
TypeScript
Raw Normal View History

import * as v from 'valibot';
import { accountSchema } from './account';
import { filteredArray } from './utils';
/**
* @category Schemas
* @see {@link https://docs.joinmastodon.org/entities/FamiliarFollowers/}
*/
const familiarFollowersSchema = v.object({
id: v.string(),
accounts: filteredArray(accountSchema),
});
/**
* @category Entity types
*/
type FamiliarFollowers = v.InferOutput<typeof familiarFollowersSchema>
export { familiarFollowersSchema, type FamiliarFollowers };