mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-04-29 01:56:58 +00:00
9 lines
184 B
TypeScript
9 lines
184 B
TypeScript
namespace FriendicaEntity {
|
|
export type List = {
|
|
id: string
|
|
title: string
|
|
replies_policy: RepliesPolicy
|
|
}
|
|
|
|
export type RepliesPolicy = 'followed' | 'list' | 'none'
|
|
}
|