#124 - Add support to specify preview image

This commit is contained in:
Elio Struyf
2021-09-30 16:26:21 +02:00
parent 8199ab964e
commit 5f28e145c4
7 changed files with 47 additions and 17 deletions
+2
View File
@@ -1,6 +1,7 @@
import { VersionInfo } from '../../models/VersionInfo';
import { ViewType } from '../state';
import { ContentFolder } from '../../models/ContentFolder';
import { ContentType } from '../../models';
export interface Settings {
beta: boolean;
@@ -14,4 +15,5 @@ export interface Settings {
versionInfo: VersionInfo;
pageViewType: ViewType | undefined;
mediaSnippet: string[];
contentTypes: ContentType[];
}