| 104 | } |
| 105 | |
| 106 | export interface Attachment { |
| 107 | text: string; |
| 108 | title: string; |
| 109 | footer: string; |
| 110 | id: number; |
| 111 | footer_icon: string; |
| 112 | ts: number; |
| 113 | color: string; |
| 114 | fields: Field2[]; |
| 115 | mrkdwn_in: string[]; |
| 116 | fallback: string; |
| 117 | image_url: string; |
| 118 | image_width?: number; |
| 119 | image_height?: number; |
| 120 | image_bytes?: number; |
| 121 | pretext: string; |
| 122 | } |
| 123 | |
| 124 | export interface Match { |
| 125 | iid: string; |
nothing calls this directly
no outgoing calls
no test coverage detected