about summary refs log tree commit diff
path: root/src/state/queries/threadgate.ts
blob: 4891175825ccd5d810170a0c53d0f180bb5973bc (plain) (blame)
1
2
3
4
5
export type ThreadgateSetting =
  | {type: 'nobody'}
  | {type: 'mention'}
  | {type: 'following'}
  | {type: 'list'; list: string}