mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-06-13 16:36:56 +00:00
9 lines
182 B
TypeScript
9 lines
182 B
TypeScript
namespace Entity {
|
|
export type List = {
|
|
id: string
|
|
title: string
|
|
replies_policy: RepliesPolicy | null
|
|
}
|
|
|
|
export type RepliesPolicy = 'followed' | 'list' | 'none'
|
|
}
|