( msg: Api.Message, isEat2: Boolean )
| 220 | } |
| 221 | |
| 222 | async function downloadAvatar( |
| 223 | msg: Api.Message, |
| 224 | isEat2: Boolean |
| 225 | ): Promise<Buffer | null> { |
| 226 | return isEat2 ? await downloadMedia(msg) : await downloadProfilePhoto(msg); |
| 227 | } |
| 228 | |
| 229 | async function compositeWithEntryConfig(parmas: { |
| 230 | entry: EntryConfig; |
no test coverage detected