| 17 | } |
| 18 | |
| 19 | export interface Channel { |
| 20 | id: string; |
| 21 | is_channel: boolean; |
| 22 | is_group: boolean; |
| 23 | is_im: boolean; |
| 24 | name: string; |
| 25 | is_shared: boolean; |
| 26 | is_org_shared: boolean; |
| 27 | is_ext_shared: boolean; |
| 28 | is_private: boolean; |
| 29 | is_mpim: boolean; |
| 30 | pending_shared: any[]; |
| 31 | is_pending_ext_shared: boolean; |
| 32 | user: string; |
| 33 | } |
| 34 | |
| 35 | export interface Style { |
| 36 | bold: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected