blob: bbe677ad41cd3cb69fedf5d645a8b5689f21a006 (
plain) (
blame)
1
2
3
4
5
6
7
|
export type ThreadgateAllowUISetting =
| {type: 'everybody'}
| {type: 'nobody'}
| {type: 'mention'}
| {type: 'following'}
| {type: 'followers'}
| {type: 'list'; list: string}
|