monkeeShark/packages/megalodon/src/mastodon/entities/list.ts

10 lines
183 B
TypeScript
Raw Normal View History

namespace MastodonEntity {
export type List = {
id: string
title: string
replies_policy: RepliesPolicy
}
export type RepliesPolicy = 'followed' | 'list' | 'none'
}