We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4d8de6 commit 1c70d15Copy full SHA for 1c70d15
src/types/CoverageEntry.ts
@@ -1,4 +1,4 @@
1
-import type { UploadedFile } from '@prezly/uploads';
+import type { UploadedFile, UploadedImage } from '@prezly/uploads';
2
3
import type { OEmbedInfo } from './common';
4
import type { Contact } from './Contact';
@@ -27,7 +27,7 @@ export interface CoverageEntry {
27
note_content_html: string;
28
note_content_json: string;
29
note_content_text: string;
30
- attachment: UploadedFile | null;
+ attachment: UploadedFile | UploadedImage | null;
31
attachment_oembed: OEmbedInfo | null;
32
33
published_at: string | null;
0 commit comments