mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2025-01-04 13:23:08 +02:00
3fd2b55406
This reverts commit 89eea5df52
.
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'
|
|
}
|