about summary refs log tree commit diff
path: root/src/state/queries/threadgate/types.ts
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}