(threadType: ThreadType)
| 83 | export const sidebarThreadTypes: $ReadOnlyArray<ThreadType> = |
| 84 | getThreadTypesByTrait('sidebar'); |
| 85 | export function threadTypeIsSidebar(threadType: ThreadType): boolean { |
| 86 | return sidebarThreadTypes.includes(threadType); |
| 87 | } |
| 88 | |
| 89 | export const personalThreadTypes: $ReadOnlyArray<ThreadType> = |
| 90 | getThreadTypesByTrait('personal'); |
no outgoing calls
no test coverage detected