Sharkey/packages/megalodon/src/entities/list.ts
2023-09-25 01:49:57 +02:00

9 lines
182 B
TypeScript

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